-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathwt.json.asd
41 lines (39 loc) · 1.48 KB
/
wt.json.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
;;;; -*- Mode: LISP -*-
(defsystem wt.json
:author "Xiangyu He"
:mailto "[email protected]"
:license "BSD 3-Clause"
:depends-on (:alexandria)
:defsystem-depends-on (:wt.vendor)
:components ((:module "json"
:serial t
:components ((:file "package")
(:file "utility")
(:file "condition")
(:file "common")
(:file "value")
(:file "true")
(:file "false")
(:file "null")
(:file "array")
(:file "object")
(:file "access")
(:file "encode")
(:file "decode"))))
:in-order-to ((test-op (test-op :wt.json/test)))
:perform (load-op :after (o c)
#+lispworks
(pushnew :json hcl:*packages-for-warn-on-redefinition*)))
(defsystem wt.json/test
:depends-on (:wt.json
:wt.test
:cl-ppcre)
:components ((:module "test/json"
:components ((:file "package")
(:file "object")
(:file "access")
(:file "encode")
(:file "decode")
(:file "suite"))))
:perform (test-op (o c)
(symbol-call :test :run! :json-test)))