-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathwt.utility.asd
31 lines (29 loc) · 1.03 KB
/
wt.utility.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.utility
:author "Xiangyu He"
:mailto "[email protected]"
:license "BSD 3-Clause"
:depends-on (:alexandria
:cl-cont
:maxpc
(:feature :sbcl (:require :sb-introspect)))
:defsystem-depends-on (:wt.vendor)
:components ((:module "utility"
:serial t
:components ((:file "package")
(:file "macro")
(:file "function")
(:file "class")
(:file "tree")
(:file "string")
(:file "parser"))))
:in-order-to ((test-op (test-op :wt.utility/test))))
(defsystem wt.utility/test
:depends-on (:wt.utility
:wt.test)
:components ((:module "test/utility"
:serial t
:components ((:file "package")
(:file "helper"))))
:perform (test-op (o c)
(symbol-call :test :run! :utility-test)))