forked from av83/wizard
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathwizard.asd
48 lines (44 loc) · 1.63 KB
/
wizard.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
36
37
38
39
40
41
42
43
44
(asdf:defsystem #:wizard
:version "0.0.1"
:author "rigidus <[email protected]>"
:licence "GPLv3"
:description "metacyclic codegenerator"
:depends-on (#:cl-mysql
#:cl-store
#:restas
#:restas-directory-publisher
#:cl-json
#:cl-ppcre
#:cl-smtp
#:cl-mime
#:arnesi
#:closer-mop
#:drakma)
:serial t
:components ((:file "lib")
(:file "ent")
(:file "genobj")
(:file "iface")
(:file "places")
(:file "gen")
(:file "obj")
(:file "grid")
(:file "searching")
(:file "grid-fltr")
(:file "render")
(:file "show-linear-elt")
(:file "perm")
(:file "defmodule")
(:file "init")
(:static-file "migration.lisp")
(:static-file "README")
(:static-file "wizard.asd")
(:module "tpl"
:serial t
;; :pathname ""
:components ((:static-file "about.htm")
(:static-file "contacts.htm")
(:static-file "main.htm")
(:static-file "root.htm")
(:static-file "services.htm")
(:static-file "templates.htm")))))