-
Notifications
You must be signed in to change notification settings - Fork 0
/
Esquisse.lisp
30 lines (26 loc) · 1.14 KB
/
Esquisse.lisp
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
;============================================================================
; Esquisse
; library for OM
;============================================================================
;
; This program is free software. For information on usage
; and redistribution, see the "LICENSE" file in this distribution.
;
; This program is distributed in the hope that it will be useful,
; but WITHOUT ANY WARRANTY; without even the implied warranty of
; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
;
;============================================================================
(in-package :om)
(compile&load (om::om-relative-path '("sources") "esquisse"))
(om::fill-library
'(("Intervals" nil nil (BEST-TRANSP) nil)
("Spectral Harmony"
(("harm-series" nil nil (HARM-SERIES NTH-HARM) nil)
("modulations" nil nil (FREQ-MOD RING-MOD) nil)
("processing" nil nil (FSHIFT FDISTOR ) nil)
("analysis" nil nil (VIRT-FUND M-VIR-FUN HARM-DIST BEST-FREQ) nil))
Nil Nil Nil)
("Utilities" nil nil nil nil)
("midi" nil nil nil nil)))
(om::set-lib-release 1.1)