diff options
author | aap <aap@papnet.eu> | 2019-05-31 00:33:01 +0200 |
---|---|---|
committer | aap <aap@papnet.eu> | 2019-05-31 00:33:01 +0200 |
commit | c4368b7432b4484d3f086afb5589fcddc62a1915 (patch) | |
tree | 2cce45d6ba4feabb229eb349c5b32beb22849d39 /premake5.lua | |
parent | added CCredits (diff) | |
parent | Merge pull request #3 from Fire-Head/master (diff) | |
download | re3-c4368b7432b4484d3f086afb5589fcddc62a1915.tar re3-c4368b7432b4484d3f086afb5589fcddc62a1915.tar.gz re3-c4368b7432b4484d3f086afb5589fcddc62a1915.tar.bz2 re3-c4368b7432b4484d3f086afb5589fcddc62a1915.tar.lz re3-c4368b7432b4484d3f086afb5589fcddc62a1915.tar.xz re3-c4368b7432b4484d3f086afb5589fcddc62a1915.tar.zst re3-c4368b7432b4484d3f086afb5589fcddc62a1915.zip |
Diffstat (limited to '')
-rw-r--r-- | premake5.lua | 18 |
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" + |