-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdub.json
50 lines (50 loc) · 1.06 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": "teraflop",
"description": "An ECS game engine on a Vulkan foundation",
"authors": [
"Chance Snow"
],
"license": "BSD 3-clause",
"copyright": "Copyright © 2020, Chance Snow",
"targetType": "sourceLibrary",
"targetPath": "bin",
"sourcePaths": [ "source" ],
"subPackages": [
"examples/triangle",
"examples/cube"
],
"versions": ["GLFW_32"],
"configurations": [
{
"name": "unittest"
},
{
"name": "unittest-gpu",
"versions": ["GPU"]
}
],
"systemDependencies": "glfw >= 3.2, vulkan >= 1.1.0",
"dependencies": {
"bindbc-glfw": "~>0.10.1",
"concepts": "~>0.0.8",
"gfm:math": "~>8.0",
"gfx:genmesh": "~master",
"gfx:graal": "~master",
"gfx:vulkan": "~master",
"libasync": "~>0.8.6"
},
"subConfigurations": {
"bindbc-glfw": "static",
"gfx:vulkan": "glfw"
},
"lflags-linux": [
"-Llib/glfw-3.3.2/src"
],
"libs": ["glfw3"],
"libs-linux": [
"X11"
],
"preBuildCommands-linux": [
"cd $TERAFLOP_PACKAGE_DIR && make lib/glfw-3.3.2/src/libglfw3.a"
]
}