-
Notifications
You must be signed in to change notification settings - Fork 0
/
OM2Csound.omlib
52 lines (48 loc) · 1.41 KB
/
OM2Csound.omlib
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
;===================================================
; OM2Csound
; Control of Csound sound synthesis from OpenMusic
;
; see www.csounds.com
;
; LIBRARY MAIN FILE
; Authors/Contributors: Laurent Pottier, Karim Haddad,
; Mikhail Malt, Carlos Agon, Jean Bresson
; (c) IRCAM 1993-2020
;===================================================
; Loader file for om#
;===================================================
(:om-lib
(:version 2.4)
(:doc "OM2Csound library")
(:author "Laurent Pottier, Karim Haddad, Mikhail Malt, Carlos Agon, Jean Bresson, IRCAM 1998-2020")
(:source-files
"sources/cs-score-processing"
"sources/cs-score"
"sources/cs-orchestra"
"sources/utils"
)
(:symbols
(:packages
(:package
(:name "ftable")
(:functions "sampler" "pargen03" "pargen05-07" "pargen09" "pargen15" ))
(:package
(:name "score")
(:functions "table" "i-statements" "make-obj-snd" "write-csound-score" "change-col-in-file"))
(:package
(:name "instts")
(:functions "inst" "out" "assign-val"))
(:package
(:name "converters")
(:functions "convert-pitch" "convert-val"))
(:package
(:name "operators")
(:functions "plus" "minus" "multiply" "divide"))
(:package
(:name "write")
(:functions "write-csound-orc" "header"))
(:package
(:name "opcodes")
(:functions "oscil" "line-seg" "linen" "phasor"))
))
)