-
Notifications
You must be signed in to change notification settings - Fork 0
/
org.tfeb.star.asd
63 lines (59 loc) · 1.62 KB
/
org.tfeb.star.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
54
55
56
57
58
59
60
61
62
63
;;;; ASDF sysdcl for Štar
;;;
(in-package :asdf-user)
(defsystem "org.tfeb.star"
:description "Štar: an iteration construct"
:version (:read-file-line "VERSION")
:author "Tim Bradshaw"
:license "MIT"
:homepage "https://github.com/tfeb/star"
:depends-on ("org.tfeb.conduit-packages/define-package"
"org.tfeb.hax.utilities"
"org.tfeb.dsm"
"org.tfeb.hax.collecting"
"org.tfeb.hax.iterate")
:in-order-to ((test-op (load-op "org.tfeb.star/test")))
:serial t
:components
((:file "pkg")
(:file "common")
(:file "star")
(:file "iterators")
(:file "ranges")))
(defsystem "org.tfeb.star/test"
:description "Štar tests"
:version (:read-file-line "VERSION")
:author "Tim Bradshaw"
:license "MIT"
:homepage "https://github.com/tfeb/star"
:depends-on ("org.tfeb.hax.collecting"
"org.tfeb.hax.iterate"
"org.tfeb.hax.utilities"
"org.tfeb.dsm"
"org.tfeb.star"
"parachute")
:pathname "test/"
:serial t
:components
((:file "pkg")
(:file "preamble")
(:file "test-sanity")
(:file "test-iterators")
(:file "test-ranges")
(:file "test-all")))
(defsystem "org.tfeb.star/bench"
:description "Štar benchmarks"
:version (:read-file-line "VERSION")
:author "Tim Bradshaw"
:license "MIT"
:homepage "https://github.com/tfeb/star"
:depends-on ("org.tfeb.hax.collecting"
"org.tfeb.hax.iterate"
"org.tfeb.star")
:pathname "bench/"
:serial t
:components
((:file "pkg")
(:file "preamble")
(:file "simple")
(:file "collecting")))