forked from tpapp/let-plus
-
Notifications
You must be signed in to change notification settings - Fork 2
/
let-plus.asd
25 lines (24 loc) · 914 Bytes
/
let-plus.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
(defsystem "let-plus"
:description "Destructuring extension of LET*."
:author "Tamas K. Papp <[email protected]>."
:maintainer "Sharp Lispers <[email protected]>"
:license "Boost Software License - Version 1.0"
:version "0.2"
:serial t
:components ((:file "package")
(:file "let-plus")
(:file "extensions"))
:depends-on ("alexandria"
"anaphora")
:in-order-to ((test-op (test-op "let-plus/tests"))))
(defsystem "let-plus/tests"
:description "Tests for the LET-PLUS library."
:author "Tamas K. Papp <[email protected]>."
:maintainer "Sharp Lispers <[email protected]>"
:license "Same as LET-PLUS -- this is part of the latter."
:serial t
:components ((:file "tests"))
:depends-on ("lift"
"let-plus")
:perform (test-op (operation component)
(uiop:symbol-call '#:let-plus-tests '#:run)))