rfe12820: (test only) Support (:break-on-failures? t) in config files.
[lift.git] / lift-documentation.asd
blob204b15b2dcb65b0417b3c25b930a2fc5200b2a4f
1  (in-package #:common-lisp-user)
3 (defpackage #:lift-documentation-system
4   (:use #:common-lisp #:asdf))
5 (in-package #:lift-documentation-system)
7 ;; just ignore for now... sigh.
8 (defsystem lift-documentation
9   :author "Gary King <gwking@metabang.com>"
10   :maintainer "Gary Warren King <gwking@metabang.com>"
11   :licence "MIT Style License"
12   :description "Documentation for LIFT"
13   :components (
14                #+(or)
15                  (:module "setup"
16                         :pathname "docs/" 
17                         :components ((:file "package")
18                                      (:file "setup" 
19                                       :depends-on ("package"))))
20                #+(or)
21                (:module 
22                 "docs"
23                 :depends-on ("setup")
24                 :pathname "website/source/"
25                 :components
26                 ((:docudown-source "index.md")
27                  (:docudown-source "user-guide.md"))))
28   :depends-on (:lift #+(or) :docudown))