-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathcl-bootstrap.asd
32 lines (29 loc) · 1.08 KB
/
cl-bootstrap.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
;; file: cl-bootstrap.asd
(defparameter *cl-bootstrap-version* "0.0.2")
(asdf:defsystem :cl-bootstrap
:description "Twitter Bootstrap widget library for Common Lisp"
:version #.*cl-bootstrap-version*
:license "MIT"
:serial t
:author "Rajasegar Chandran <[email protected]>"
:depends-on (:cl-who
:parenscript)
:components ((:file "packages")
(:file "cl-bootstrap")
(:module "src"
:serial t
:components ((:file "dropdowns")
(:file "alerts")
(:file "buttons")
(:file "labels")
(:file "panels")
(:file "modal")
(:file "tabs")
(:file "tables")
(:file "carousel")
(:file "navbar")
(:file "accordion")
(:file "button-dropdowns")
(:file "forms")
(:file "bootstrap-helper")))))
;; EOF