forked from Shirakumo/harmony
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathharmony.asd
More file actions
35 lines (34 loc) · 1.19 KB
/
harmony.asd
File metadata and controls
35 lines (34 loc) · 1.19 KB
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
32
33
34
35
#|
This file is a part of harmony
(c) 2017 Shirakumo http://tymoon.eu (shinmera@tymoon.eu)
Author: Nicolas Hafner <shinmera@tymoon.eu>
|#
(asdf:defsystem harmony
:version "2.0.0"
:license "Artistic"
:author "Nicolas Hafner <shinmera@tymoon.eu>"
:maintainer "Nicolas Hafner <shinmera@tymoon.eu>"
: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 "mixing-context")
(:file "segment")
(:file "server")
(:file "mixers")
(:file "fadable")
(:file "source")
(:file "drain")
(:file "pipeline")
(:file "files")
(:module "drains"
:components ((:file "buffer")))
(:module "sources"
:components ((:file "buffer")))
(:file "documentation"))
:depends-on (:cl-mixed
:flow
:bordeaux-threads))