-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathkit.asd
28 lines (27 loc) · 926 Bytes
/
kit.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
(defsystem :kit
:description "kit"
:version "0.0.1"
:author "CL98K <[email protected]>"
:licence ""
:depends-on (:local-time :cl-csv :cxml :alexandria)
:components ((:module "src"
:serial t
:components (
(:file "package")
(:file "printf")
(:file "parse")
(:file "number")
(:file "string")
(:file "cache")
))))
(defsystem :kit/test
:description "print formatted test"
:version "1.0.0"
:author "Gzz <x>"
:licence ""
:depends-on (:kit)
:components ((:module "test"
:components ((:file "top-test")
(:file "printf-test")
(:file "number-test")
(:file "string-test")))))