-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsemistatic.asd
More file actions
28 lines (27 loc) · 790 Bytes
/
semistatic.asd
File metadata and controls
28 lines (27 loc) · 790 Bytes
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
(defsystem "semistatic"
:version "0.1.0"
:author "vydd"
:license "MIT"
:depends-on ("lquery"
"hunchentoot"
"easy-routes"
"lisp-magick-wand"
"cl-date-time-parser"
"spinneret"
"cl-slug"
"local-time")
:components ((:module "src"
:components
((:file "main"))))
:description ""
:in-order-to ((test-op (test-op "semistatic/tests"))))
(defsystem "semistatic/tests"
:author "vydd"
:license "MIT"
:depends-on ("semistatic"
"rove")
:components ((:module "tests"
:components
((:file "main"))))
:description "Test system for semistatic"
:perform (test-op (op c) (symbol-call :rove :run c)))