-
-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathcl-mixed.asd
58 lines (58 loc) · 2.38 KB
/
cl-mixed.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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
(asdf:defsystem cl-mixed
:version "2.1.0"
:license "zlib"
:author "Yukari Hafner <[email protected]>"
:maintainer "Yukari Hafner <[email protected]>"
:description "Bindings to libmixed, a sound mixing and processing library."
:homepage "https://Shirakumo.github.io/cl-mixed/"
:bug-tracker "https://github.com/Shirakumo/cl-mixed/issues"
:source-control (:git "https://github.com/Shirakumo/cl-mixed.git")
:serial T
:components ((:file "package")
(:file "low-level")
(:file "toolkit")
(:file "c-object")
(:file "bip-buffer")
(:file "buffer")
(:file "pack")
(:file "segment")
(:file "generic")
(:file "drain")
(:file "source")
(:file "mixer")
(:module "segments"
:components ((:file "basic-mixer")
(:file "biquad-filter")
(:file "bundle")
(:file "chain")
(:file "channel-convert")
(:file "compressor")
(:file "delay")
(:file "distribute")
(:file "fader")
(:file "fft")
(:file "gate")
(:file "generator")
(:file "ladspa")
(:file "noise")
(:file "null")
(:file "packer")
(:file "pitch")
(:file "plane-mixer")
(:file "quantize")
(:file "queue")
(:file "repeat")
(:file "space-mixer")
(:file "spatial-reverb")
(:file "speed-change")
(:file "unpacker")
(:file "virtual")
(:file "volume-control")))
(:module "extensions"
:components ((:file "dummy")))
(:file "documentation"))
:depends-on (:alexandria
:static-vectors
:cffi
:trivial-features
:documentation-utils))