-
Notifications
You must be signed in to change notification settings - Fork 16
/
quil-spec-gen.asd
23 lines (23 loc) · 1.06 KB
/
quil-spec-gen.asd
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
(defsystem #:quil-spec-gen
:description "Quil spec and code to generate it as a document."
:author "Robert Smith"
:depends-on (#:scriptum #:cl-who #:local-time #:split-sequence)
:pathname "specgen/"
:serial t
:components ((:file "quil")
(:module "spec"
:serial t
:components ((:static-file "sec-intro.s")
(:static-file "sec-opsem.s")
(:static-file "sec-structure.s")
(:static-file "sec-gates.s")
(:static-file "sec-reset.s")
(:static-file "sec-mem.s")
(:static-file "sec-measurement.s")
(:static-file "sec-control.s")
(:static-file "sec-other.s")
(:static-file "sec-circuits.s")
(:static-file "sec-history.s")))
(:module "site"
:serial t
:components ((:static-file "spec-style.css")))))