changelog shortlog graph tags branches changeset files revisions annotate raw help

Mercurial > core / lisp/lib/doc/doc.asd

changeset 698: 96958d3eb5b0
parent: c45929da6f75
author: Richard Westhaver <ellis@rwest.io>
date: Fri, 04 Oct 2024 22:04:59 -0400
permissions: -rw-r--r--
description: fixes
1 (defsystem :doc
2  :version "0.1.0"
3  :description "Core Documentation System"
4  :depends-on (:std :organ :parse)
5  :components ((:file "pkg")
6  (:file "proto")
7  (:file "err")
8  (:file "symbol")
9  (:file "file")
10  (:file "package")
11  (:file "system")
12  (:file "dist")
13  (:file "reprex")
14  (:file "explain")
15  (:file "image"))
16  :in-order-to ((test-op (test-op :doc/tests))))
17 
18 (defsystem :doc/tests
19  :depends-on (:rt :doc :rdb)
20  :components ((:file "tests"))
21  :perform (test-op (o c) (symbol-call :rt :do-tests :doc)))
22