summaryrefslogtreecommitdiffstats
path: root/premake5.lua
diff options
context:
space:
mode:
authorFilip Gawin <filip.gawin@zoho.com>2019-05-19 23:05:06 +0200
committerFilip Gawin <filip.gawin@zoho.com>2019-05-19 23:28:35 +0200
commit9b78f232e550a597b595afc0afa0884272f103a9 (patch)
tree96f150cc7cad5efd22c3e6e220a713a682b86777 /premake5.lua
parentCPhysical almost done (diff)
downloadre3-9b78f232e550a597b595afc0afa0884272f103a9.tar
re3-9b78f232e550a597b595afc0afa0884272f103a9.tar.gz
re3-9b78f232e550a597b595afc0afa0884272f103a9.tar.bz2
re3-9b78f232e550a597b595afc0afa0884272f103a9.tar.lz
re3-9b78f232e550a597b595afc0afa0884272f103a9.tar.xz
re3-9b78f232e550a597b595afc0afa0884272f103a9.tar.zst
re3-9b78f232e550a597b595afc0afa0884272f103a9.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" }