-
Notifications
You must be signed in to change notification settings - Fork 13
/
Copy pathdub.json
54 lines (40 loc) · 990 Bytes
/
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
53
54
{
"name": "dimgui",
"description": "dimgui is a D port of the imgui OpenGL GUI library",
"authors": [
"Mikko Mononen",
"Adrien Herubel",
"Andrej Mitrovic"
],
"homepage": "https://github.com/d-gamedev-team/dimgui",
"copyright": "Copyright (c) 2009-2010 Mikko Mononen [email protected]",
"license": "zlib",
"targetName": "imgui",
"targetType": "staticLibrary",
"targetPath" : "bin",
"sourcePaths": [
"src"
],
"libs-posix": [
"dl",
"glfw"
],
"libs-linux": [
"GL",
"Xrandr",
"Xext",
"Xxf86vm",
"Xi",
"Xcursor",
"Xinerama",
"X11"
],
"libs-windows": ["glfw3dll"],
"lflags-windows-x86": ["/LIBPATH:$PACKAGE_DIR\\lib\\x86"],
"lflags-windows-x86_64": ["/LIBPATH:$PACKAGE_DIR\\lib\\x86-64"],
"subPackages": [
"examples/colors",
"examples/demo",
"examples/memory"
]
}