-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathdub.json
30 lines (30 loc) · 892 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
{
"name": "wg-image",
"description": "Define colors, images, and basic formats.",
"copyright": "Copyright © 2020, Dlang Graphics Workgroup",
"license": "BSL-1.0",
"sourcePaths": [ "src" ],
"importPaths": [ "src" ],
"targetPath" : "bin/$BUILD_TYPE-$ARCH",
"targetType": "library",
"configurations": [
{
"name": "library",
},
{
"name": "test",
"targetType": "executable",
"targetPath": "bin/test-$BUILD_TYPE-$ARCH",
"sourcePaths": ["test"],
"mainSourceFile": "test/app.d",
"copyFiles-windows-x86": ["lib/*.dll"],
"copyFiles-windows-x86_64": ["lib64/*.dll"],
"versions": [
"FI_318",
],
"dependencies": {
"bindbc-freeimage": "~>0.3.2",
},
},
],
}