-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathwt.live.asd
31 lines (29 loc) · 939 Bytes
/
wt.live.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
;;;; -*- Mode: LISP -*-
(defsystem wt.live
:author "Xiangyu He"
:mailto "[email protected]"
:license "BSD 3-Clause"
:depends-on (:wt.http
:wt.websocket
:wt.html
:wt.json
:wt.component
:wt.reactive
:group-by
:parenscript)
:defsystem-depends-on (:wt.vendor)
:components ((:module "live"
:serial t
:components ((:file "package")
(:file "page"))))
:in-order-to ((test-op (test-op :wt.live/test)))
:perform (load-op :after (o c)
#+lispworks
(pushnew :live hcl:*packages-for-warn-on-redefinition*)))
(defsystem wt.live/test
:depends-on (:wt.test)
:components ((:module "test/live"
:serial t
:components ((:file "package"))))
:perform (test-op (o c)
(symbol-call :test :run! :live-test)))