From 48356a974c37bd0cc1f835fab211cb225aca917e Mon Sep 17 00:00:00 2001 From: /dev/urandom Date: Mon, 4 Jan 2016 21:06:50 +0100 Subject: [PATCH] premake5: --copy-to now also copies all other DLLs (f.ex. those produced by debug builds) --- premake5.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/premake5.lua b/premake5.lua index 24767750..d676a3b0 100644 --- a/premake5.lua +++ b/premake5.lua @@ -106,7 +106,7 @@ workspace "iw4x" if _OPTIONS["copy-to"] then saneCopyToPath = string.gsub(_OPTIONS["copy-to"] .. "\\", "\\\\", "\\") postbuildcommands { - "copy /y \"$(TargetPath)\" \"" .. saneCopyToPath .. "\"" + "{COPY} \"$(TargetDir)*.dll\" \"" .. saneCopyToPath .. "\"" } end