-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdub.json
More file actions
30 lines (29 loc) · 867 Bytes
/
dub.json
File metadata and controls
30 lines (29 loc) · 867 Bytes
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
{
"authors": [
"Nathan"
],
"copyright": "Copyright © 2021, Nathan",
"targetType": "library",
"dependencies": {
"derelict-gl3": "~>1.0.24",
"gl3n": "~>1.4.1",
"glfw-d": "~>1.1.0",
"imagefmt": "~>2.1.2",
"bindbc-freetype": "~>1.0.0"
},
"versions": [ "FT_211" ],
"description": "A minimal D application.",
"extraDependencyFiles": [
"./Assets/Shaders/*.shader",
"./Assets/Models/*.obj",
"./Assets/Shaders/*.glsl",
"./bootstrap/initScript.d"
],
"license": "proprietary",
"name": "realm",
"importPaths": [ "source/" ],
"sorucePaths": [ "source/" ],
"targetPath": "./bin",
"preBuildCommands": [ "dub run --single $REALM_PACKAGE_DIR\\bootstrap\\initScript.d -- --realm-root=\"$REALM_PACKAGE_DIR\"" ],
"postBuildCommands": [ "copy \"$REALM_PACKAGE_DIR\\external\\freetype\\release dll\\win64\\freetype.dll\" $ROOT_PACKAGE_DIR\\bin" ],
}