-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathdub.json
More file actions
40 lines (35 loc) · 1.07 KB
/
dub.json
File metadata and controls
40 lines (35 loc) · 1.07 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
{
"name": "electronvolt",
"description": "FPS with physics based puzzles",
"homepage": "https://github.com/gecko0307/electronvolt",
"license": "BSL-1.0",
"authors": [
"Timur Gafarov"
],
"dependencies": {
"dagon": "0.30.0",
"dagon:imgui": "0.30.0",
"dagon:newton": "0.30.0",
"bindbc-loader": "1.1.4",
"bindbc-soloud": "~>0.1"
},
"importPaths": [
"src"
],
"buildRequirements":[
"allowWarnings"
],
"sourcePaths": ["src"],
"mainSourceFile": "src/main.d",
"sourceFiles-windows": ["resource.res"],
"lflags-linux": ["-rpath=$$ORIGIN"],
"configurations": [
{
"name": "application",
"targetType": "executable",
"postBuildCommands-windows": [
"$PACKAGE_DIR\\bin/rcedit-x64 \"electronvolt.exe\" --set-file-version \"0.1.0.0\" --set-product-version \"0.1.0\" --set-icon \"$PACKAGE_DIR\\icon.ico\" --application-manifest \"$PACKAGE_DIR\\electronvolt.manifest\""
],
}
]
}