-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcl-aubio.asd
68 lines (65 loc) · 2.67 KB
/
cl-aubio.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
59
60
61
62
63
64
65
66
67
68
(asdf:defsystem #:cl-aubio
:description "Aubio bindings for Common Lisp"
:author "Lautaro García"
:defsystem-depends-on (:cffi/c2ffi)
:version "0.0.1"
:depends-on (:cffi :cffi/c2ffi :cffi-libffi :closer-mop)
:in-order-to ((test-op (test-op :cl-aubio/tests)))
:components ((:module "bindings"
:serial t
:components ((:file "package")
(:module "spec"
:components ((:cffi/c2ffi-file "aubio.h"
:c2ffi-executable "/usr/bin/c2ffi"
:package :aubio/bindings
:foreign-library-name "aubio/bindings::aubio"
:include-sources ()
:foreign-library-spec ((:unix (:or "libaubio.so.5" "libaubio.so"))
(t (:default "libaubio"))))))))
(:module "src"
:serial t
:components ((:file "package")
(:file "aubio-mop")
(:file "commons")
(:file "float-vector")
(:file "float-matrix")
(:file "timestamp")
(:file "source")
(:file "pitch")
(:file "onset")
(:file "tempo")
(:file "notes")
(:file "filterbank")
(:file "sink")))))
(asdf:defsystem #:cl-aubio/tests
:description "System for the tests of cl-aubio"
:author "Lautaro García"
:version "0.0.1"
:depends-on (:cl-aubio :fiveam)
:pathname "tests"
:serial t
:components ((:file "package")
(:file "utils")
(:file "float-matrix")
(:file "float-vector")
(:file "notes")
(:file "onset")
(:file "pitch")
(:file "tempo")
(:file "filterbank")
(:file "sink"))
:perform (test-op (op s) (uiop:symbol-call :5am :run-all-tests)))
(asdf:defsystem #:cl-aubio/examples
:description "System that contains examples of the usage of cl-aubio"
:author "Lautaro García"
:version "0.0.1"
:serial t
:depends-on (:cl-aubio :vgplot)
:pathname "examples/"
:components ((:file "package")
(:file "notes")
(:file "pitch")
(:file "onset")
(:file "tempo")
(:file "filterbank")
(:file "sink")))