summaryrefslogtreecommitdiffstats
path: root/premake5.lua
diff options
context:
space:
mode:
authoraap <aap@papnet.eu>2019-05-20 11:07:38 +0200
committerGitHub <noreply@github.com>2019-05-20 11:07:38 +0200
commita4d279b392ece0a2af633f91a7eb02cc9a0a27ff (patch)
treeb0b7bbf0205fd49aaaa42dfe349b62ef58247514 /premake5.lua
parentCPhysical almost done (diff)
parentStore artifacts (diff)
downloadre3-a4d279b392ece0a2af633f91a7eb02cc9a0a27ff.tar
re3-a4d279b392ece0a2af633f91a7eb02cc9a0a27ff.tar.gz
re3-a4d279b392ece0a2af633f91a7eb02cc9a0a27ff.tar.bz2
re3-a4d279b392ece0a2af633f91a7eb02cc9a0a27ff.tar.lz
re3-a4d279b392ece0a2af633f91a7eb02cc9a0a27ff.tar.xz
re3-a4d279b392ece0a2af633f91a7eb02cc9a0a27ff.tar.zst
re3-a4d279b392ece0a2af633f91a7eb02cc9a0a27ff.zip
Diffstat (limited to 'premake5.lua')
-rw-r--r--premake5.lua6
1 files changed, 5 insertions, 1 deletions
diff --git a/premake5.lua b/premake5.lua
index 67766af5..11e09b1b 100644
--- a/premake5.lua
+++ b/premake5.lua
@@ -1,5 +1,5 @@
workspace "re3"
- configurations { "Release","Debug" }
+ configurations { "ReleaseCI", "Release", "Debug" }
location "build"
files { "src/*.*" }
@@ -41,3 +41,7 @@ project "re3"
debugdir "C:/Users/aap/games/gta3_re"
debugcommand "C:/Users/aap/games/gta3_re/gta3.exe"
postbuildcommands "copy /y \"$(TargetPath)\" \"C:\\Users\\aap\\games\\gta3_re\\plugins\\re3.dll\""
+ filter "configurations:ReleaseCI"
+ defines { "NDEBUG" }
+ optimize "On"
+ flags { "StaticRuntime" }