mirror of https://github.com/adamdruppe/arsd.git
dub sucks
This commit is contained in:
parent
43f34ca3fd
commit
9460c9afb2
12
dub.json
12
dub.json
|
@ -3,7 +3,7 @@
|
||||||
"targetType": "sourceLibrary",
|
"targetType": "sourceLibrary",
|
||||||
"sourcePaths": ["dummy"],
|
"sourcePaths": ["dummy"],
|
||||||
"dependencies": {},
|
"dependencies": {},
|
||||||
"description": "A container of various subpackages that do lots of different things. Do not use this as a package itself, instead use the subpackages for what you need (or better yet, ditch dub and do things the simple, reliably way of dmd *.d). So make your dependency like \"arsd-official:simpledisplay\" rather than \"arsd-official\".",
|
"description": "A container of various subpackages that do lots of different things. Do not use this as a package itself, instead use the subpackages for what you need (or better yet, ditch dub and do things the simple, reliable way of dmd *.d). So make your dependency like \"arsd-official:simpledisplay\" rather than \"arsd-official\".",
|
||||||
"license":"BSL-1.0",
|
"license":"BSL-1.0",
|
||||||
"subPackages": [
|
"subPackages": [
|
||||||
{
|
{
|
||||||
|
@ -12,6 +12,16 @@
|
||||||
"targetType": "sourceLibrary",
|
"targetType": "sourceLibrary",
|
||||||
"libs-posix": ["X11", "Xext", "GL", "GLU"],
|
"libs-posix": ["X11", "Xext", "GL", "GLU"],
|
||||||
"libs-windows": ["gdi32"],
|
"libs-windows": ["gdi32"],
|
||||||
|
"configurations" [
|
||||||
|
{
|
||||||
|
"name": "normal"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "with-opengl",
|
||||||
|
"versions": "with_opengl",
|
||||||
|
"libs-windows": ["opengl32", "glu32"]
|
||||||
|
}
|
||||||
|
],
|
||||||
"sourceFiles": ["simpledisplay.d", "color.d"]
|
"sourceFiles": ["simpledisplay.d", "color.d"]
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue