summaryrefslogtreecommitdiffstats
path: root/premake5.lua
diff options
context:
space:
mode:
authorFire-Head <Fire-Head@users.noreply.github.com>2019-05-30 23:49:06 +0200
committerFire-Head <Fire-Head@users.noreply.github.com>2019-05-30 23:49:06 +0200
commit3ef6029764cfcba7e73bf62c19addbe1732480b8 (patch)
treeff4354c0a3056af8f580356787982021edf62963 /premake5.lua
parentadded CText (diff)
downloadre3-3ef6029764cfcba7e73bf62c19addbe1732480b8.tar
re3-3ef6029764cfcba7e73bf62c19addbe1732480b8.tar.gz
re3-3ef6029764cfcba7e73bf62c19addbe1732480b8.tar.bz2
re3-3ef6029764cfcba7e73bf62c19addbe1732480b8.tar.lz
re3-3ef6029764cfcba7e73bf62c19addbe1732480b8.tar.xz
re3-3ef6029764cfcba7e73bf62c19addbe1732480b8.tar.zst
re3-3ef6029764cfcba7e73bf62c19addbe1732480b8.zip
Diffstat (limited to 'premake5.lua')
-rw-r--r--premake5.lua18
1 files changed, 14 insertions, 4 deletions
diff --git a/premake5.lua b/premake5.lua
index 9cc0a880..ae035be3 100644
--- a/premake5.lua
+++ b/premake5.lua
@@ -1,5 +1,5 @@
workspace "re3"
- configurations { "ReleaseCI", "Release", "Debug" }
+ configurations { "ReleaseCI", "Release", "ReleaseFH", "Debug" }
location "build"
files { "src/*.*" }
@@ -30,7 +30,7 @@ project "re3"
filter "configurations:Debug"
defines { "DEBUG" }
- flags { "StaticRuntime" }
+ staticruntime "on"
symbols "On"
debugdir "C:/Users/aap/games/gta3_re"
debugcommand "C:/Users/aap/games/gta3_re/gta3.exe"
@@ -39,11 +39,21 @@ project "re3"
filter "configurations:Release"
defines { "NDEBUG" }
optimize "On"
- flags { "StaticRuntime" }
+ staticruntime "on"
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:ReleaseFH"
+ defines { "NDEBUG" }
+ symbols "Full"
+ optimize "off"
+ staticruntime "on"
+ debugdir "F:/Rockstar Games/GTAIII"
+ debugcommand "F:/Rockstar Games/GTAIII/gta3.exe"
+ targetextension ".asi"
+ targetdir "F:/Rockstar Games/GTAIII/scripts"
filter "configurations:ReleaseCI"
defines { "NDEBUG" }
optimize "On"
- flags { "StaticRuntime" }
+ staticruntime "on"
+