-
Notifications
You must be signed in to change notification settings - Fork 6
/
40ants-doc.asd
33 lines (30 loc) · 1.35 KB
/
40ants-doc.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
;;;; -*- mode: Lisp -*-
(defsystem 40ants-doc
:licence "MIT"
:version "0.12.0"
:author "Alexander Artemenko"
:mailto "[email protected]"
:homepage "https://40ants.com/doc"
:bug-tracker "https://github.com/40ants/doc/issues"
:source-control (:git "https://github.com/40ants/doc")
:description "Allows to put documentation inside lisp files and cross-reference between different entities. Based on MGL-PAX."
:class :package-inferred-system
:pathname "src"
:depends-on ("uiop"
"40ants-doc/core"
"40ants-doc/restart"
"40ants-doc/glossary"
"40ants-doc/changelog"
"40ants-doc/ignored-words"
"40ants-doc/locatives/asdf-system"
;; This subsystem is not loaded by default
;; because it brings a multiple additional dependencies:
;; alexandria, cl-change-case, cl-ppcre, cl-unicode, closer-mop.
;; Use it if your don't care or your have docs in a separate ASDF sybsystem.
;; "40ants-doc/autodoc"
)
:in-order-to ((asdf:test-op (asdf:test-op "40ants-doc-test"))))
(asdf:register-system-packages "log4cl" '("LOG"))
(asdf:register-system-packages "swank" '("SWANK-BACKEND"
"SWANK/BACKEND"
"SWANK-MOP"))