-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathdub.json
50 lines (42 loc) · 1.35 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
{
"name": "dagondemo",
"description": "Dagon demo application",
"homepage": "https://github.com/gecko0307/dagon-demo",
"license": "Boost",
"authors": [
"Timur Gafarov"
],
"importPaths": [
"src"
],
"stringImportPaths": [
],
"dependencies": {
"dagon": "~dev_0.10"
},
"buildRequirements":[
"allowWarnings"
],
"sourcePaths": ["src"],
"mainSourceFile": "src/main.d",
"postBuildCommands-windows-x86": [
"$PACKAGE_DIR\\rcedit-x86 \"dagondemo.exe\" --set-file-version \"0.11.0.0\" --set-product-version \"0.11.0\" --set-icon \"$PACKAGE_DIR\\icon.ico\""
],
"postBuildCommands-windows-x86_64": [
"$PACKAGE_DIR\\rcedit-x64 \"dagondemo.exe\" --set-file-version \"0.11.0.0\" --set-product-version \"0.11.0\" --set-icon \"$PACKAGE_DIR\\icon.ico\""
],
"configurations": [
{
"name": "application",
"targetType": "executable"
},
{
"name": "win32",
"targetType": "executable",
"platforms": ["windows"],
"lflags-windows-x86-dmd": ["/SUBSYSTEM:WINDOWS:5.01"],
"lflags-windows-x86_64-dmd": ["/SUBSYSTEM:WINDOWS", "/ENTRY:mainCRTStartup"],
"lflags-windows-x86_64-ldc": ["-SUBSYSTEM:WINDOWS", "-ENTRY:mainCRTStartup"]
}
]
}