summaryrefslogtreecommitdiffstats
path: root/premake5.lua
diff options
context:
space:
mode:
authorFilip Gawin <filip.gawin@zoho.com>2019-06-13 11:12:42 +0200
committerFilip Gawin <filip.gawin@zoho.com>2019-06-13 12:11:50 +0200
commit8eea89d3b1dc54752bfd75b27114a4ccfb8c41c0 (patch)
tree88e2e62ad6bc0b8e3f43305273d87d92daa6c40d /premake5.lua
parentimplemented GTA stream read functions (diff)
downloadre3-8eea89d3b1dc54752bfd75b27114a4ccfb8c41c0.tar
re3-8eea89d3b1dc54752bfd75b27114a4ccfb8c41c0.tar.gz
re3-8eea89d3b1dc54752bfd75b27114a4ccfb8c41c0.tar.bz2
re3-8eea89d3b1dc54752bfd75b27114a4ccfb8c41c0.tar.lz
re3-8eea89d3b1dc54752bfd75b27114a4ccfb8c41c0.tar.xz
re3-8eea89d3b1dc54752bfd75b27114a4ccfb8c41c0.tar.zst
re3-8eea89d3b1dc54752bfd75b27114a4ccfb8c41c0.zip
Diffstat (limited to 'premake5.lua')
-rw-r--r--premake5.lua11
1 files changed, 5 insertions, 6 deletions
diff --git a/premake5.lua b/premake5.lua
index 68a08a1a..49d0d502 100644
--- a/premake5.lua
+++ b/premake5.lua
@@ -1,5 +1,5 @@
workspace "re3"
- configurations { "ReleaseCI", "Release", "ReleaseFH", "Debug" }
+ configurations { "DebugCI", "ReleaseCI", "Release", "ReleaseFH", "Debug" }
location "build"
files { "src/*.*" }
@@ -62,12 +62,11 @@ project "re3"
debugcommand "F:/Rockstar Games/GTAIII/gta3.exe"
targetextension ".asi"
targetdir "F:/Rockstar Games/GTAIII/scripts"
+ filter "configurations:DebugCI"
+ defines { "DEBUG" }
+ symbols "On"
+ staticruntime "on"
filter "configurations:ReleaseCI"
defines { "NDEBUG" }
optimize "On"
staticruntime "on"
- filter "configurations:DebugCI"
- defines { "DEBUG" }
- staticruntime "on"
- symbols "On"
-