--copy-to option for premake5 to define custom folder to copy iw4x.dll to after build.

This commit is contained in:
/dev/urandom 2015-12-31 02:44:04 +01:00
parent 8b81fe37ae
commit 77df2fcae8
No known key found for this signature in database
GPG Key ID: 41322B973E0F295E

View File

@ -1,3 +1,9 @@
-- Option to allow copying the DLL file to a custom folder after build
newoption {
trigger = "copy-to",
description = "Optionally copy the DLL to a custom folder after build, define the path here if wanted."
}
solution "iw4x"
location ("./build")
configurations { "Normal" }
@ -11,3 +17,10 @@ solution "iw4x"
configuration "Normal"
defines { "NDEBUG" }
flags { "Optimize", "MultiProcessorCompile", "Symbols" }
if _OPTIONS["copy-to"] then
saneCopyToPath = string.gsub(_OPTIONS["copy-to"] .. "\\", "\\\\", "\\")
postbuildcommands {
"copy /y \"$(TargetPath)\" \"" .. saneCopyToPath .. "\""
}
end