-
Notifications
You must be signed in to change notification settings - Fork 0
/
clj.asd
36 lines (34 loc) · 1.07 KB
/
clj.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
36
;;;; clj.asd
(asdf:defsystem #:clj
:description "Some clojure conveniences for Common Lisp"
:author "inaimathi <[email protected]>"
:license "MIT Expat <https://www.debian.org/legal/licenses/mit>"
:version "0.0.1"
:serial t
:depends-on (#:named-readtables #:cl-hamt #:optima #:arrow-macros #:test-utils #:local-package-aliases #:agnostic-lizard)
:components ((:module
src :components
((:file "package")
(:file "types")
(:file "syntax")
(:file "generics")
(:file "map")
(:file "set")
(:file "generators")
(:file "clj")))))
(asdf:defsystem #:clj/test
:description "Test suite for :clj"
:author "inaimathi <[email protected]>"
:license "MIT Expat <https://www.debian.org/legal/licenses/mit>"
:serial t
:depends-on (#:clj #:test-utils)
:defsystem-depends-on (#:prove-asdf)
:components ((:module
test :components
((:file "package")
;; (:test-file "types")
(:test-file "syntax")
(:test-file "clj"))))
:perform (test-op
:after (op c)
(funcall (intern #.(string :run) :prove) c)))