-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathwt.svg.asd
28 lines (26 loc) · 858 Bytes
/
wt.svg.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
;;;; -*- Mode: LISP -*-
(defsystem wt.svg
:author "Xiangyu He"
:mailto "[email protected]"
:license "BSD 3-Clause"
:depends-on (:wt.dom
:alexandria
:cl-change-case)
:defsystem-depends-on (:wt.vendor)
:components ((:module "svg"
:serial t
:components ((:file "package")
(:file "element"))))
:in-order-to ((test-op (test-op :wt.svg/test)))
:perform (load-op :after (o c)
#+lispworks
(pushnew :svg hcl:*packages-for-warn-on-redefinition*)))
(defsystem wt.svg/test
:depends-on (:wt.svg
:wt.test)
:components ((:module "test/svg"
:serial t
:components ((:file "package")
)))
:perform (test-op (o c)
(symbol-call :test :run! :svg-test)))