-
Notifications
You must be signed in to change notification settings - Fork 6
/
40ants-doc-full.asd
63 lines (57 loc) · 3.09 KB
/
40ants-doc-full.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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
;;;; -*- mode: Lisp -*-
(defsystem 40ants-doc-full
:licence "MIT"
:version "0.1.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.git")
:description "Documentation generator. You will need to load this system, to build documentation for a library which uses 40ANTS-DOC system."
:class :package-inferred-system
:pathname "full"
:depends-on (;; "40ants-doc/full"
"40ants-doc-full/builder"
"40ants-doc-full/doc"
;; TODO: Все эти locatives надо сделать доступными в минимальном пакете
;; может быть не загружать сами модули, но сделать так, чтобы на них можно было ссылаться
"40ants-doc-full/commondoc/changelog"
"40ants-doc-full/commondoc/section"
"40ants-doc-full/github"
"40ants-doc-full/locatives/argument"
"40ants-doc-full/locatives/asdf-system"
"40ants-doc-full/locatives/class"
"40ants-doc-full/locatives/compiler-macro"
"40ants-doc-full/locatives/constant"
"40ants-doc-full/locatives/dislocated"
"40ants-doc-full/locatives/function"
"40ants-doc-full/locatives/generic-function"
"40ants-doc-full/locatives/glossary"
"40ants-doc-full/locatives/include"
"40ants-doc-full/locatives/locative"
"40ants-doc-full/locatives/macro"
"40ants-doc-full/locatives/method"
"40ants-doc-full/locatives/package"
"40ants-doc-full/locatives/restart"
"40ants-doc-full/locatives/section"
"40ants-doc-full/locatives/slots"
"40ants-doc-full/locatives/stdout-of"
"40ants-doc-full/locatives/structure-accessor"
"40ants-doc-full/locatives/symbol-macro"
"40ants-doc-full/locatives/type"
"40ants-doc-full/locatives/variable"
"40ants-doc-full/object-package-impl"
"40ants-doc-full/themes/dark"
"40ants-doc-full/themes/dark""40ants-doc-full/builder"
"40ants-doc-full/themes/default"
"40ants-doc-full/themes/light")
:in-order-to ((asdf:test-op (asdf:test-op "40ants-doc-test"))))
(asdf:register-system-packages "log4cl" '("LOG"))
(asdf:register-system-packages "3bmd-ext-code-blocks" '("3BMD-CODE-BLOCKS"))
(asdf:register-system-packages "common-html" '("COMMON-HTML.EMITTER"))
(asdf:register-system-packages "common-doc" '("COMMON-DOC.OPS"
"COMMON-DOC.FORMAT"))
(asdf:register-system-packages "3bmd-ext-code-blocks" '("3BMD-CODE-BLOCKS"))
(asdf:register-system-packages "swank" '("SWANK-BACKEND"
"SWANK/BACKEND"
"SWANK-MOP"))