-
Notifications
You must be signed in to change notification settings - Fork 0
/
smart-server.asd
35 lines (32 loc) · 982 Bytes
/
smart-server.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
35
(in-package :cl-user)
(defpackage :smart-server-asd
(:use :cl :asdf))
(in-package :smart-server-asd)
(defsystem :smart-server
:name "Can's Smart WebServer System"
:version "0.1"
:author "Can"
:maintainer "Can EriK Lu"
:description "Web Serevr based upon Hunchentoot"
:long-description "More powerful than Express/Koa in node.js?"
:depends-on (:celwk
:hunchentoot
:hunchensocket
:do-urlencode
:drakma
:com.gigamonkeys.json
:postmodern)
:serial t
:components ((:file "package")
(:file "route-parser")
(:file "location")
(:file "express")
(:file "smart-server")
(:file "database")))
(defsystem :smart-server/test
:description "Just for testing"
:serial t
:depends-on (:celwk
:smart-server)
:components ((:file "test/package")))
;; (:file "test/smart-test")))