-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathclop.asd
36 lines (35 loc) · 1.03 KB
/
clop.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 clop
:version "0.1.0"
:description "CLOP - Common Lisp tOml Parser"
:license "MIT"
:author "YUE Daian"
:depends-on (#:alexandria
#:esrap
#:parse-number
#:local-time
#:str)
:serial t
:components ((:module "src"
:components
((:file "conditions")
(:file "toml-value-parser")
(:file "config")
(:file "toml-block")
(:file "toml-block-parser")
(:file "rules")
(:file "clop"))))
:in-order-to ((test-op (test-op :clop-tests))))
(defsystem clop-tests
:version "0.1.0"
:license "MIT"
:author "YUE Daian"
:depends-on (#:clop
#:fiveam)
:serial t
:components ((:module "tests"
:components
((:file "clop")
(:file "rules"))))
:perform (test-op (op c)
(symbol-call :fiveam :run!
(find-symbol* :clop :clop-tests))))