-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathwt.component.asd
43 lines (41 loc) · 1.51 KB
/
wt.component.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
42
43
;;;; -*- Mode: LISP -*-
(defsystem wt.component
:author "Xiangyu He"
:mailto "[email protected]"
:license "BSD 3-Clause"
:depends-on (:wt.html
:wt.css
:wt.utility
:wt.reactive
:alexandria
:group-by
:split-sequence)
:defsystem-depends-on (:wt.vendor)
:components ((:module "component"
:serial t
:components ((:file "package")
(:file "utility")
(:file "environment")
(:file "render")
(:file "style")
(:file "component-class")
(:file "component")
(:file "diff"))))
:in-order-to ((test-op (test-op :wt.component/test)))
:perform (load-op :after (o c)
#+lispworks
(pushnew :component hcl:*packages-for-warn-on-redefinition*)))
(defsystem wt.component/test
:depends-on (:wt.component
:wt.test)
:components ((:module "test/component"
:serial t
:components ((:file "package")
(:file "helper")
(:file "component")
(:file "render")
;; (:file "style")
(:file "diff")
(:file "reactive"))))
:perform (test-op (o c)
(symbol-call :test :run! :component-test)))