mirror of https://github.com/buggins/dlangui.git
update copyFiles: if using new dub with support of directory copying, copy resources to destination directory for library users
This commit is contained in:
parent
634789aa36
commit
a2fd7868fc
6
dub.json
6
dub.json
|
@ -19,6 +19,12 @@
|
||||||
|
|
||||||
"versions-posix": ["USE_SDL", "USE_OPENGL"],
|
"versions-posix": ["USE_SDL", "USE_OPENGL"],
|
||||||
|
|
||||||
|
"copyFiles": ["res"],
|
||||||
|
|
||||||
|
"copyFiles-windows": [
|
||||||
|
"lib/FreeImage.dll"
|
||||||
|
],
|
||||||
|
|
||||||
"sourceFiles": [
|
"sourceFiles": [
|
||||||
"project.ddoc"
|
"project.ddoc"
|
||||||
],
|
],
|
||||||
|
|
|
@ -13,9 +13,7 @@
|
||||||
"src/main.d"
|
"src/main.d"
|
||||||
],
|
],
|
||||||
|
|
||||||
"copyFiles-windows": [
|
"copyFiles": ["res"],
|
||||||
"../../lib/FreeImage.dll"
|
|
||||||
],
|
|
||||||
|
|
||||||
"versions-posix": ["USE_SDL", "USE_OPENGL"],
|
"versions-posix": ["USE_SDL", "USE_OPENGL"],
|
||||||
|
|
||||||
|
|
|
@ -16,7 +16,7 @@
|
||||||
],
|
],
|
||||||
|
|
||||||
"copyFiles-windows": [
|
"copyFiles-windows": [
|
||||||
"../../lib/FreeImage.dll",
|
"../../lib/FreeImage.dll"
|
||||||
],
|
],
|
||||||
|
|
||||||
"mainSourceFile": "src/app.d",
|
"mainSourceFile": "src/app.d",
|
||||||
|
|
Loading…
Reference in New Issue