aboutsummaryrefslogtreecommitdiff
path: root/SYSTEM.asd
diff options
context:
space:
mode:
Diffstat (limited to 'SYSTEM.asd')
-rw-r--r--SYSTEM.asd20
1 files changed, 20 insertions, 0 deletions
diff --git a/SYSTEM.asd b/SYSTEM.asd
new file mode 100644
index 0000000..f9b2754
--- /dev/null
+++ b/SYSTEM.asd
@@ -0,0 +1,20 @@
1;;;; SYSTEM.asd
2;;;; System definitions for SYSTEM
3;;;; AUTHOR:
4
5;; ---------------------------------------------------------------------
6;;; Main System Definition
7;; ---------------------------------------------------------------------
8(asdf:defsystem "SYSTEM"
9 :build-operation program-op
10 :components ((:file "src/SYSTEM"))
11 :in-order-to ((asdf:test-op (asdf:test-op "SYSTEM/test"))))
12
13
14;; ---------------------------------------------------------------------
15;;; Test Suite System Definition
16;; ---------------------------------------------------------------------
17(asdf:defsystem "SYSTEM/test"
18 :depends-on ("SYSTEM" "fiveam")
19 :components ((:file "test/SYSTEM-test"))
20 :perform (asdf:test-op (o c) (uiop:symbol-call :fiveam '#:run-all-tests)))