From a2fd7868fc747b9155f89801a931f67951518d1c Mon Sep 17 00:00:00 2001 From: Vadim Lopatin Date: Wed, 10 Dec 2014 16:41:41 +0300 Subject: [PATCH] update copyFiles: if using new dub with support of directory copying, copy resources to destination directory for library users --- dub.json | 6 ++++++ examples/example1/dub.json | 4 +--- examples/helloworld/dub.json | 2 +- 3 files changed, 8 insertions(+), 4 deletions(-) diff --git a/dub.json b/dub.json index 59755b5a..5da9c691 100644 --- a/dub.json +++ b/dub.json @@ -19,6 +19,12 @@ "versions-posix": ["USE_SDL", "USE_OPENGL"], + "copyFiles": ["res"], + + "copyFiles-windows": [ + "lib/FreeImage.dll" + ], + "sourceFiles": [ "project.ddoc" ], diff --git a/examples/example1/dub.json b/examples/example1/dub.json index fed23a61..e9475fb5 100644 --- a/examples/example1/dub.json +++ b/examples/example1/dub.json @@ -13,9 +13,7 @@ "src/main.d" ], - "copyFiles-windows": [ - "../../lib/FreeImage.dll" - ], + "copyFiles": ["res"], "versions-posix": ["USE_SDL", "USE_OPENGL"], diff --git a/examples/helloworld/dub.json b/examples/helloworld/dub.json index 2f18fb37..5339e64b 100644 --- a/examples/helloworld/dub.json +++ b/examples/helloworld/dub.json @@ -16,7 +16,7 @@ ], "copyFiles-windows": [ - "../../lib/FreeImage.dll", + "../../lib/FreeImage.dll" ], "mainSourceFile": "src/app.d",