forked from AudioKit/AudioKit
-
Notifications
You must be signed in to change notification settings - Fork 0
/
AudioKit.podspec.json
62 lines (61 loc) · 1.79 KB
/
AudioKit.podspec.json
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
{
"name": "AudioKit",
"version": "2.1.1",
"authors": {
"Aurelius Prochazka": "audiokit@audiokit.io"
},
"license": {
"type": "MIT"
},
"homepage": "http://audiokit.io/",
"source": {
"git": "https://github.com/audiokit/AudioKit.git",
"tag": "v2.1.1-05-06-2015"
},
"summary": "Open-source audio synthesis, processing, & analysis platform.",
"source_files": [
"AudioKit/Core\ Classes/**/*.{h,m}",
"AudioKit/Instruments/**/*.{h,m}",
"AudioKit/Notes/**/*.{h,m}",
"AudioKit/Operations/**/*.{h,m}",
"AudioKit/Parameters/**/*.{h,m}",
"AudioKit/Sequencing/**/*.{h,m}",
"AudioKit/Tables/**/*.{h,m}",
"AudioKit/Utilities/**/*.{h,m,c}",
"AudioKit/Platforms/Common/csound/*.{h,hpp}",
"AudioKit/Platforms/Common/*.{h,m}"
],
"platforms": {
"osx": "10.10",
"ios": "8.0"
},
"public_header_files": [
"AudioKit/Core\ Classes/**/*.h",
"AudioKit/Instruments/**/*.h",
"AudioKit/Notes/**/*.h",
"AudioKit/Operations/**/*.h",
"AudioKit/Parameters/**/*.h",
"AudioKit/Sequencing/**/*.h",
"AudioKit/Tables/**/*.h",
"AudioKit/Utilities/**/*.h",
"AudioKit/Platforms/Common/*.h"
],
"osx": {
"frameworks": "CsoundLib",
"vendored_frameworks": "AudioKit/Platforms/OSX/CsoundLib.framework"
},
"ios": {
"libraries": [
"csound",
"sndfile"
],
"source_files": [
"AudioKit/Platforms/Common/csound/*.{h,hpp}",
"AudioKit/Platforms/Common/*.h"
],
"vendored_libraries": [
"AudioKit/Platforms/iOS/libs/libcsound.a",
"AudioKit/Platforms/iOS/libs/libsndfile.a"
]
}
}