-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdub.json
36 lines (31 loc) · 792 Bytes
/
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
{
"name": "bindbc-soloud",
"description": "BindBC binding to SoLoud",
"homepage": "https://github.com/gecko0307/bindbc-soloud",
"license": "BSL-1.0",
"authors": [
"Timur Gafarov"
],
"importPaths": ["src"],
"sourcePaths": ["src"],
"dependencies": {
"bindbc-loader": "~>1.1"
},
"buildRequirements":[
"allowWarnings"
],
"configurations": [
{
"name": "library",
"targetType": "library"
},
{
"name": "application",
"targetName": "demo",
"targetType": "executable",
"mainSourceFile": "demo/main.d"
}
],
"copyFiles-windows-x86" : ["lib/x86/*.dll"],
"copyFiles-windows-x86_64" : ["lib/x64/*.dll"]
}