forked from AuburnSounds/Dplug
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdub.json
More file actions
89 lines (81 loc) · 2.32 KB
/
dub.json
File metadata and controls
89 lines (81 loc) · 2.32 KB
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
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
{
"name": "dplug",
"description": "D audio toolkit. Easy way to make VST plugins.",
"homepage": "http://github.com/p0nce/dplug/",
"copyright": "Steinberg",
"license": "VST",
"targetType": "none",
"authors": [
"Guillaume Piolat",
"Andrej Mitrovic",
"Sean M. Costello (Hilbert transformer)"
],
"subPackages": [
{
"name": "core",
"sourcePaths": [ "core/dplug/core" ],
"importPaths": [ "core" ],
"dependencies": {
"gfm:core": "~>3.0"
}
},
{
"name": "dsp",
"sourcePaths": [ "dsp/dplug/dsp" ],
"importPaths": [ "dsp" ],
"dependencies": {
"dplug:core": "*",
"gfm:math": "~>3.0"
}
},
{
"name": "plugin",
"sourcePaths": [ "plugin/dplug/plugin" ],
"importPaths": [ "plugin" ],
"dependencies": {
"dplug:core": "*",
}
},
{
"name": "vst",
"sourcePaths": [ "vst/dplug/vst" ],
"importPaths": [ "vst" ],
"dependencies": {
"dplug:plugin": "*"
}
},
{
"name": "window",
"sourcePaths": [ "window/dplug/window" ],
"importPaths": [ "window" ],
"sourcePaths-windows": [ "platforms/windows" ],
"importPaths-windows": [ "platforms/windows" ],
"libs-windows": ["gdi32", "user32"],
"dependencies": {
"ae-graphics": "~>0.0",
"gfm:math": "~>3.0",
"gfm:core": "~>3.0",
"dplug:core": "~>3.0"
},
"dependencies-osx": {
"derelict-cocoa": "~>0.0"
},
"dependencies-linux": {
"x11": "~>1.0"
}
},
{
"name": "gui",
"sourcePaths": [ "gui/dplug/gui" ],
"importPaths": [ "gui" ],
"dependencies": {
"dplug:plugin": "*",
"dplug:window": "*",
"dplug:core": "*",
"ae-graphics": "~>0.0",
"gfm:math": "~>3.0",
"gfm:image": "~>3.0"
}
}
]
}