-
Notifications
You must be signed in to change notification settings - Fork 0
/
where-are-we.asd
34 lines (29 loc) · 998 Bytes
/
where-are-we.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
32
33
34
(in-package :cl-user)
(defpackage where-are-we-asd
(:use :cl :asdf))
(in-package :where-are-we-asd)
(defsystem where-are-we
:version "0.0.1"
:author "Naoaki Iwakiri"
:license "MIT"
:depends-on (:clack
:caveman2
:envy
:cl-ppcre
:cl-annot
;; HTML Template
:cl-emb
;; For default json rendorer
:datafly
)
:components ((:module "src"
:components
((:file "main" :depends-on ("config" "view"))
(:file "web" :depends-on ("view" "util"))
(:file "checkin" :depends-on ("view" "web"))
(:file "update" :depends-on ("web"))
(:file "view" :depends-on ("config"))
(:file "util" :depends-on ("config"))
(:file "config"))))
:description ""
:in-order-to ((test-op (load-op where-are-we-test))))