-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathkhazern-intrinsic.asd
36 lines (34 loc) · 1.41 KB
/
khazern-intrinsic.asd
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
(asdf:defsystem :khazern-intrinsic
:description "System for loading Khazern intrinsically into an implementation."
:license "BSD"
:author ("Robert Strandh"
"Tarn W. Burton")
:maintainer "Tarn W. Burton"
:version (:read-file-form "version.sexp")
:homepage "https://github.com/s-expressionists/Khazern"
:bug-tracker "https://github.com/s-expressionists/Khazern/issues"
:depends-on (:khazern #:trivial-package-locks)
:in-order-to ((asdf:test-op (asdf:test-op #:khazern-intrinsic/test)))
:components ((:module code
:pathname "code/intrinsic/"
:serial t
:components ((:file "packages")
(:file "loop-defmacro")))))
(asdf:defsystem :khazern-intrinsic/test
:description "ANSI Test system for Khazern"
:license "BSD"
:author ("Robert Strandh"
"Tarn W. Burton")
:maintainer "Tarn W. Burton"
:version (:read-file-form "version.sexp")
:homepage "https://github.com/s-expressionists/Khazern"
:bug-tracker "https://github.com/s-expressionists/Khazern/issues"
:depends-on ("alexandria"
"khazern-intrinsic")
:perform (asdf:test-op (op c)
(uiop:symbol-call :khazern-intrinsic/test :test))
:components ((:module code
:pathname "code/intrinsic/test/"
:serial t
:components ((:file "packages")
(:file "test")))))