-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdub.json
54 lines (51 loc) · 1.48 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
51
52
{
"authors": [
"rillki"
],
"copyright": "Copyright © 2022, rillki",
"dependencies": {
"bindbc-glfw": "~>1.0.1",
"bindbc-opengl": "~>1.0.3"
},
"description": "D static bindings to Nuklear library.",
"license": "Unlicense",
"name": "nuklear_d",
"targetPath": "bin",
"versions": [
"GLFW_33",
"GL_33",
"GL_AllowDeprecated",
"NK_INCLUDE_FIXED_TYPES",
"NK_INCLUDE_STANDARD_IO",
"NK_INCLUDE_STANDARD_VARARGS",
"NK_INCLUDE_DEFAULT_ALLOCATOR",
"NK_INCLUDE_VERTEX_BUFFER_OUTPUT",
"NK_INCLUDE_FONT_BAKING",
"NK_INCLUDE_DEFAULT_FONT",
"NK_KEYSTATE_BASED_INPUT"
],
"configurations": [
{
"name": "osx",
"platforms": ["osx"],
"targetType": "executable",
"lflags": ["-L$PACKAGE_DIR/lib/osx"],
"preBuildCommands": ["cd c; sh build_nuklear_static.sh"]
},
{
"name": "linux",
"platforms": ["linux"],
"targetType": "executable",
"lflags": ["-L$PACKAGE_DIR/lib/linux"],
"preBuildCommands": ["cd c; sh build_nuklear_static.sh"]
},
{
"name": "windows",
"platforms": ["windows"],
"targetType": "executable",
"lflags": ["-L$PACKAGE_DIR/lib/windows_x64"],
"preBuildCommands": ["cd c; ./build_nuklear_static.bat"]
}
],
"libs": ["nuklear"]
}