-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathimmutable.asd
More file actions
21 lines (19 loc) · 868 Bytes
/
immutable.asd
File metadata and controls
21 lines (19 loc) · 868 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
(defsystem "immutable"
:class :package-inferred-system
:author "Phoebe Goldman <phoebe@goldman-tribe.org>"
:version "0.0.1"
:depends-on ("immutable/vec"
"immutable/hash"
"immutable/dict")
:in-order-to ((test-op (test-op "immutable/test"))))
(defsystem "immutable/test"
:defsystem-depends-on ((:version "fiveam-asdf" "3.0.1"))
:class :package-inferred-fiveam-tester-system
:depends-on ((:version "uiop" "3.3.5") ; for uiop package-local-nicknames support
"immutable/test/vec"
"immutable/test/hash"
"immutable/test/dict")
:test-names ((#:immutable-vec-suite . #:immutable/test/vec)
(#:immutable-hash-suite . #:immutable/test/hash)
(#:immutable-dict-suite . #:immutable/test/dict)))
(register-system-packages "atomics" '(:org.shirakumo.atomics))