-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdub.json
55 lines (47 loc) · 1.51 KB
/
dub.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
{
"$schema": "https://raw.githubusercontent.com/Pure-D/code-d/master/json-validation/dub.schema.json",
"name": "popss",
"license": "Proprietery",
"importPaths": [ "."],
"sourcePaths": [ "src"],
"stringImportPaths": ["gfx", "fonts", "."],
"copyright": "none",
"dflags-linux-dmd": ["-defaultlib=libphobos2.a"],
"lflags-windows-ldc": [
"libcmt.lib",
"/nodefaultlib:msvcrt.lib",
"/nodefaultlib:vcruntime.lib"
],
"dependencies":
{
"dplug": "9.0.13",
"ddsp": "~>2"
},
"dflags-osx-ldc": ["-static"],
"configurations": [
{
"name": "VST",
"versions": ["VST"],
"targetType": "dynamicLibrary",
"lflags-osx-ldc": [ "-exported_symbols_list", "module-vst.lst", "-dead_strip" ]
},
{
"name": "VST3",
"versions": ["VST3"],
"targetType": "dynamicLibrary",
"lflags-osx-ldc": [ "-exported_symbols_list", "module-vst3.lst", "-dead_strip" ]
},
{
"name": "AU",
"versions": ["AU"],
"targetType": "dynamicLibrary",
"lflags-osx-ldc": [ "-exported_symbols_list", "module-au.lst", "-dead_strip" ]
},
{
"name": "LV2",
"versions": ["LV2"],
"targetType": "dynamicLibrary",
"lflags-osx-ldc": [ "-exported_symbols_list", "module-lv2.lst", "-dead_strip" ]
}
]
}