aboutsummaryrefslogtreecommitdiff
path: root/SYSTEM.asd
diff options
context:
space:
mode:
authorTristan Williams <tgwil@tgwil.net>2024-10-27 22:15:12 -0400
committerTristan Williams <tgwil@tgwil.net>2024-10-27 22:15:12 -0400
commit6ad840ed600bebfe4801b045a2bb24abb848b54e (patch)
tree08c6694fabc0d05b124f8360246400b948ed5e9e /SYSTEM.asd
downloadtemplate.cl-6ad840ed600bebfe4801b045a2bb24abb848b54e.tar.gz
template.cl-6ad840ed600bebfe4801b045a2bb24abb848b54e.tar.bz2
template.cl-6ad840ed600bebfe4801b045a2bb24abb848b54e.zip
Add everything
I've already been working on a CL template. Just add the fucker.
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)))