-
Notifications
You must be signed in to change notification settings - Fork 0
/
org.tfeb.dsm.asd
53 lines (49 loc) · 1.31 KB
/
org.tfeb.dsm.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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
;;;; ASDF sysdcl for dsm
;;;
(in-package :asdf-user)
(defsystem "org.tfeb.dsm"
:description "Destructuring match"
:version (:read-file-line "VERSION")
:author "Tim Bradshaw"
:license "MIT"
:homepage "https://github.com/tfeb/dsm"
:depends-on ( "org.tfeb.hax.collecting"
"org.tfeb.hax.iterate"
"org.tfeb.hax.simple-loops"
"org.tfeb.hax.utilities"
"org.tfeb.hax.spam")
:in-order-to ((test-op (load-op "org.tfeb.dsm/test")))
:serial t
:components
((:file "pkg")
(:file "low")
(:file "pll")
(:file "cpll")
(:file "dsm")))
(defsystem "org.tfeb.dsm/test"
:description "Destructuring match tests"
:version (:read-file-line "VERSION")
:author "Tim Bradshaw"
:license "MIT"
:homepage "https://github.com/tfeb/dsm"
:depends-on ("org.tfeb.dsm" "parachute")
:pathname "test/"
:serial t
:components
((:file "pkg")
(:file "preamble")
(:file "test-pll")
(:file "test-ll")
(:file "test-dsm")
(:file "test-bugs")
(:file "test-all")))
(defsystem "org.tfeb.dsm/bench"
:description "Destructuring match benchmarks"
:version (:read-file-line "VERSION")
:author "Tim Bradshaw"
:license "MIT"
:homepage "https://github.com/tfeb/dsm"
:depends-on ("org.tfeb.dsm")
:pathname "bench/"
:components
((:file "bench")))