-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathwave-research.asd
32 lines (31 loc) · 1.09 KB
/
wave-research.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
(in-package :cl-user)
(defpackage cl-commonmark-asd
(:use :cl :asdf))
(in-package :cl-commonmark-asd)
(defsystem wave-research
:name "wave-research"
:version "0.0.1"
:license "MIT"
:author "Dmitry Petrov <[email protected]>"
:maintainer "Dmitry Petrov <[email protected]>"
:description "What is it like working with sound in Common Lisp?"
:homepage "https://github.com/can3p/wave-research"
:serial T
:components ((:module "src"
:components (
(:file "package")
(:file "read-wav")
(:file "wave")
(:file "filters")
(:file "player")
(:file "ring-buffer")
(:file "spectrum-check")
(:file "helpers")
(:file "wave-research"))))
:depends-on (:cl-portaudio
:cl-portaudio-tests
:cl-wav
:cl-slice
:cl-arrows
:eazy-gnuplot
:bordeaux-fft))