-
-
Notifications
You must be signed in to change notification settings - Fork 6
/
harmony.asd
29 lines (29 loc) · 1.13 KB
/
harmony.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
(asdf:defsystem harmony
:version "2.0.0"
:license "zlib"
:author "Yukari Hafner <[email protected]>"
:maintainer "Yukari Hafner <[email protected]>"
:description "A common lisp sound server and sound processing library."
:homepage "https://Shirakumo.github.io/harmony/"
:bug-tracker "https://github.com/Shirakumo/harmony/issues"
:source-control (:git "https://github.com/Shirakumo/harmony.git")
:serial T
:components ((:file "package")
(:file "toolkit")
(:file "server")
(:file "segment")
(:file "voice")
(:file "simple")
(:file "environment")
(:file "documentation"))
:defsystem-depends-on (:trivial-features)
:depends-on (:cl-mixed
:atomics
:bordeaux-threads
:stealth-mixin
(:feature :windows :cl-mixed-wasapi)
(:feature :windows :cl-mixed-winmm)
(:feature :linux :cl-mixed-alsa)
(:feature :linux :cl-mixed-pulse)
(:feature :darwin :cl-mixed-coreaudio)
(:feature :bsd :cl-mixed-oss)))