You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
17 lines
490 B
17 lines
490 B
;;;; cl-bible.asd |
|
|
|
(asdf:defsystem #:cl-bible |
|
:description "Describe cl-bible here" |
|
:author "Your Name <your.name@example.com>" |
|
:license "Specify license here" |
|
:version "0.0.1" |
|
:serial t |
|
:depends-on (#:str #:clog) |
|
:components ((:file "package") |
|
(:file "verse") |
|
(:file "search") |
|
(:file "lift-search") |
|
(:file "annotate") |
|
(:file "data") |
|
(:file "clog") |
|
(:file "cl-bible")))
|
|
|