-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathkai.asd
28 lines (28 loc) · 1.03 KB
/
kai.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 "kai"
:version "0.2.1"
:author "Yusuke Kominami"
:license "MIT License"
:depends-on ("dexador"
"cl-who"
"cl-css"
"jonathan")
:serial t
:components ((:module "src"
:components
((:file "util")
(:file "converter")
(:module "plotly"
:serial t
:depends-on ("converter")
:components
((:file "generate")
(:file "launch")))
(:file "interface")
(:file "kai"))))
:in-order-to ((test-op (test-op :kai-test)))
:description "Plotter for Common Lisp"
:long-description #.(with-open-file (stream (merge-pathnames
#p"README.md"
(or *load-pathname* *compile-file-pathname*))
:if-does-not-exist nil
:direction :input)))