-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathnougat-web.asd
27 lines (26 loc) · 959 Bytes
/
nougat-web.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
(defsystem "nougat-web"
:version "0.1.0"
:author "Valentin Boettcher"
:license "LLGPL"
:depends-on ("ningle" "clack" "cl-who" "log4cl" "envy" "cl-fad" "3bmd" "dexador"
"cl-interpol" "cl-json" "arrow-macros" "serapeum" "cl-yaml" "myway"
"str")
:components ((:module "src"
:components
((:file "config")
(:file "discourse"
:depends-on ("config"))
(:file "main"
:depends-on ("config" "discourse")))))
:description ""
:in-order-to ((test-op (test-op "nougat-web/tests"))))
(defsystem "nougat-web/tests"
:author "Valentin Boettcher"
:license "LLGPL"
:depends-on ("nougat-web"
"rove")
:components ((:module "tests"
:components
((:file "main"))))
:description "Test system for nougat-web"
:perform (test-op (op c) (symbol-call :rove :run c)))