From 3ef6029764cfcba7e73bf62c19addbe1732480b8 Mon Sep 17 00:00:00 2001 From: Fire-Head Date: Fri, 31 May 2019 00:49:06 +0300 Subject: fixed CParticle crash && RandTable implemented PC codewarrior rand updated premake --- premake5.lua | 18 ++++++++++++++---- 1 file changed, 14 insertions(+), 4 deletions(-) (limited to 'premake5.lua') 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" + -- cgit v1.2.3