forked from fukamachi/cl-project
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcl-project.asd
33 lines (29 loc) · 1.05 KB
/
cl-project.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
#|
This file is a part of CL-Project package.
URL: http://github.com/fukamachi/cl-project
Copyright (c) 2011 Eitaro Fukamachi <[email protected]>
CL-Project is freely distributable under the LLGPL License.
|#
#|
Generate a skeleton for modern project
Author: Eitaro Fukamachi ([email protected])
|#
(defsystem "cl-project"
:version "0.3.1"
:author "Eitaro Fukamachi"
:license "LLGPL"
:depends-on ("cl-emb"
"uiop"
"cl-ppcre"
"local-time"
"prove")
:components ((:module "src"
:components
((:file "cl-project" :depends-on ("specials" "file" "skeleton"))
(:file "file" :depends-on ("specials" "io"))
(:file "skeleton" :depends-on ("specials" "file" "middleware"))
(:file "io" :depends-on ("specials"))
(:file "middleware" :depends-on ("file"))
(:file "specials"))))
:description "Generate a skeleton for modern project"
:in-order-to ((test-op (test-op "cl-project-test"))))