-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathlitterae.asd
34 lines (31 loc) · 1.25 KB
/
litterae.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
;;;; ========================================================================================== ;;;;
;;;; cl-litterae.asd ;;;;
;;;; ========================================================================================== ;;;;
(asdf:defsystem #:litterae
:description "Beautiful documentation generation."
:author "Stefan Devai <[email protected]>"
:license "MIT"
:version "0.3.0"
:depends-on (:docparser
:lsx
:3bmd
:3bmd-ext-code-blocks
:str
:cl-yaml)
:components ((:module "source"
:components
((:file "package")
(:file "config" :depends-on ("package"))
(:file "templates/index" :depends-on ("config"))
(:file "litterae" :depends-on ("templates/index"))))))
(asdf:defsystem #:litterae/tests
:description "Test system for Litterae"
:author "Stefan Devai <[email protected]>"
:license "MIT"
:serial t
:depends-on (:litterae :litterae-test-system :rove)
:components ((:module "tests"
:components
((:file "package")
(:file "unit")
(:file "integration")))))