-
Notifications
You must be signed in to change notification settings - Fork 1
/
holberg-app-suite.asd
29 lines (27 loc) · 1.21 KB
/
holberg-app-suite.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
;;;; holberg-app-suite.asd
;;;;
;;;; Copyright Izaak Walton (c) 2022
(asdf:defsystem #:holberg-app-suite
:version "0.0.1"
:author "Izaak Walton <[email protected]"
:license "GNU General Purpose License"
:description "Webapps for Holberg music tools"
:depends-on ("holberg" "otakar" "seria" "cl-who" "spinneret" "cl-bootstrap" "hunchentoot")
:serial t
:build-operation program-op
:build-pathname "launch-suite"
:entry-point "holberg-app-suite::main"
:components ((:module "holberg-app-suite"
:serial t
:components ((:file "package")
(:file "server")
(:file "main")
(:file "page-template")
(:module "www"
:serial t
:components ((:file "home")
(:file "options")
(:file "resonance-input")
(:file "chord-generator")
(:file "roman-tools")
(:file "matrix-generator")))))))