mirror of
https://github.com/GTAmodding/re3.git
synced 2024-11-15 09:19:00 +00:00
premake fixes
This commit is contained in:
parent
6822cc5de8
commit
5922a9b88d
1 changed files with 7 additions and 5 deletions
12
premake5.lua
12
premake5.lua
|
@ -106,31 +106,33 @@ project "re3"
|
||||||
defines { "DEBUG", "LIBRW", "RW_D3D9" }
|
defines { "DEBUG", "LIBRW", "RW_D3D9" }
|
||||||
staticruntime "off"
|
staticruntime "off"
|
||||||
symbols "Full"
|
symbols "Full"
|
||||||
setpaths("$(GTA_III_RE_DIR)/", "re3.exe", "")
|
setpaths("$(GTA_III_RE_DIR)/", "$(TargetFileName)", "")
|
||||||
|
|
||||||
filter "configurations:Release"
|
filter "configurations:Release"
|
||||||
defines { "NDEBUG", "LIBRW", "RW_D3D9" }
|
defines { "NDEBUG", "LIBRW", "RW_D3D9" }
|
||||||
optimize "On"
|
optimize "On"
|
||||||
staticruntime "off"
|
staticruntime "off"
|
||||||
symbols "Full"
|
symbols "Full"
|
||||||
setpaths("$(GTA_III_RE_DIR)/", "re3.exe", "")
|
setpaths("$(GTA_III_RE_DIR)/", "$(TargetFileName)", "")
|
||||||
|
|
||||||
filter "configurations:ReleaseFH"
|
filter "configurations:ReleaseFH"
|
||||||
defines { "NDEBUG" }
|
defines { "NDEBUG" }
|
||||||
symbols "Full"
|
symbols "Full"
|
||||||
optimize "off"
|
optimize "off"
|
||||||
staticruntime "on"
|
staticruntime "on"
|
||||||
setpaths("$(GTA_III_RE_DIR)/", "re3.exe", "")
|
setpaths("$(GTA_III_RE_DIR)/", "$(TargetFileName)", "")
|
||||||
|
|
||||||
filter "configurations:DebugRW"
|
filter "configurations:DebugRW"
|
||||||
defines { "DEBUG" }
|
defines { "DEBUG" }
|
||||||
staticruntime "on"
|
staticruntime "on"
|
||||||
symbols "On"
|
symbols "On"
|
||||||
setpaths("$(GTA_III_RE_DIR)/", "re3.exe", "")
|
setpaths("$(GTA_III_RE_DIR)/", "$(TargetFileName)", "")
|
||||||
|
linkoptions "/SECTION:_rwcseg,ER!W /MERGE:_rwcseg=.text"
|
||||||
|
|
||||||
filter "configurations:ReleaseRW"
|
filter "configurations:ReleaseRW"
|
||||||
defines { "NDEBUG" }
|
defines { "NDEBUG" }
|
||||||
optimize "On"
|
optimize "On"
|
||||||
staticruntime "on"
|
staticruntime "on"
|
||||||
setpaths("$(GTA_III_RE_DIR)/", "re3.exe", "")
|
setpaths("$(GTA_III_RE_DIR)/", "$(TargetFileName)", "")
|
||||||
|
linkoptions "/SECTION:_rwcseg,ER!W /MERGE:_rwcseg=.text"
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue