-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcom.djhaskin.cliff.asd
36 lines (35 loc) · 1.04 KB
/
com.djhaskin.cliff.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
(defsystem "com.djhaskin.cliff"
:version "0.10.0"
:author "Daniel Jay Haskin"
:license "MIT"
:depends-on (
"quri"
"alexandria"
"com.djhaskin.nrdl"
"cl-ppcre"
"cl-reexport"
"arrows"
"dexador"
"trivial-features"
"trivial-package-local-nicknames"
)
:components ((:module "src"
:components
((:file "errors")
(:file "main"))))
:description "CLI library for Common Lisp. Handles args, env vars, and conf"
:in-order-to ((test-op (test-op "com.djhaskin.cliff/tests"))))
(defsystem "com.djhaskin.cliff/tests"
:version "0.10.0"
:author "Daniel Jay Haskin"
:license "MIT"
:depends-on (
"com.djhaskin.cliff"
"alexandria"
"rove"
"cl-ppcre")
:components ((:module "tests"
:components
((:file "main"))))
:description "Test system for cliff"
:perform (test-op (op c) (symbol-call :rove :run c)))