-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathclx-xim.asd
38 lines (35 loc) · 1.13 KB
/
clx-xim.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
(defsystem "clx-xim"
:version "0.1.0"
:author "I-Entropy"
:license ""
:depends-on ("clx" "flexi-streams")
:components ((:file "packages")
(:module "src" :depends-on ("packages")
:components
((:file "ximproth" ;; :depends-on ("clx-xim")
)
(:file "utils")
(:file "ximproth-packet" :depends-on ("utils" "ximproth"))
(:file "protrocol-handler" :depends-on ("ximproth" "utils"))
(:file "clx-xim" :depends-on ("utils" "ximproth" "protrocol-handler")))))
:description "input method for clx"
:in-order-to ((test-op (test-op "clx-xim/tests"))))
(defsystem "clx-xim/demo"
:version "0.1.0"
:author "I-Entropy"
:license ""
:depends-on ("clx-xim")
:components ((:module "demo"
:components
((:file "clx-xim-demo"))))
:description "demo for clx-xim")
(defsystem "clx-xim/tests"
:author "I-Entropy"
:license ""
:depends-on ("clx-xim"
"rove")
:components ((:module "tests"
:components
((:file "clx-xim"))))
:description "Test system for clx-xim"
:perform (test-op (op c) (symbol-call :rove :run c)))