-
Notifications
You must be signed in to change notification settings - Fork 1
/
holberg.asd
31 lines (29 loc) · 1.29 KB
/
holberg.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
;;;; holberg.asd
;;;;
;;;; Copyright (c) 2022 Izaak Walton
(asdf:defsystem #:holberg
:version "0.0.1"
:author "Izaak Walton <[email protected]>"
:license "GNU General Purpose License"
:description "A suite for music analysis and generation"
:depends-on (#:alexandria #:alexa)
:serial t
:components ((:module "src"
:serial t
:components ((:file "package")
(:file "pitch-classes")
(:file "pitch-class-sets")
(:file "print-systems")
(:file "pitches")
(:file "collections")
(:file "keys")
(:file "scales")
(:file "chords")
(:file "progressions")
(:file "romans")
(:file "rhythm")
(:file "notes")
(:file "measures")
(:file "freqs")
(:file "overtones")
(:file "tunings")))))