re3-mirror/premake5.lua

141 lines
4.0 KiB
Lua
Raw Normal View History

2020-04-17 17:22:29 +01:00
Librw = os.getenv("LIBRW") or "librw"
2020-04-15 13:05:24 +01:00
2019-05-15 15:52:37 +01:00
workspace "re3"
2020-04-17 14:31:11 +01:00
configurations { "Debug", "Release", "ReleaseFH", "DebugRW", "ReleaseRW" }
2019-05-15 15:52:37 +01:00
location "build"
files { "src/*.*" }
2019-07-07 12:09:11 +01:00
files { "src/animation/*.*" }
files { "src/audio/*.*" }
files { "src/control/*.*" }
files { "src/core/*.*" }
files { "src/entities/*.*" }
2019-05-15 15:52:37 +01:00
files { "src/math/*.*" }
files { "src/modelinfo/*.*" }
2019-07-07 12:09:11 +01:00
files { "src/objects/*.*" }
files { "src/peds/*.*" }
2019-05-15 15:52:37 +01:00
files { "src/render/*.*" }
2020-04-11 16:37:20 +01:00
files { "src/rw/*.*" }
2020-01-13 23:13:42 +00:00
files { "src/save/*.*" }
2019-07-07 12:09:11 +01:00
files { "src/skel/*.*" }
files { "src/skel/win/*.*" }
2019-10-20 18:31:59 +01:00
files { "src/text/*.*" }
2019-07-07 12:09:11 +01:00
files { "src/vehicles/*.*" }
files { "src/weapons/*.*" }
2019-08-02 21:20:12 +01:00
files { "eax/*.*" }
2019-05-15 15:52:37 +01:00
2019-05-18 11:39:39 +01:00
includedirs { "src" }
2019-07-07 12:09:11 +01:00
includedirs { "src/animation" }
includedirs { "src/audio" }
includedirs { "src/control" }
includedirs { "src/core" }
includedirs { "src/entities" }
2019-07-08 20:44:32 +01:00
includedirs { "src/math" }
2019-07-07 12:09:11 +01:00
includedirs { "src/modelinfo" }
includedirs { "src/objects" }
includedirs { "src/peds" }
includedirs { "src/render" }
2020-04-11 16:37:20 +01:00
includedirs { "src/rw" }
2020-01-13 23:13:42 +00:00
includedirs { "src/save/" }
includedirs { "src/skel/" }
includedirs { "src/skel/win" }
2019-10-20 18:31:59 +01:00
includedirs { "src/text" }
2019-07-07 12:09:11 +01:00
includedirs { "src/vehicles" }
includedirs { "src/weapons" }
2019-08-02 21:20:12 +01:00
includedirs { "eax" }
2019-07-07 12:09:11 +01:00
includedirs { "dxsdk/include" }
2019-08-02 21:20:12 +01:00
includedirs { "milessdk/include" }
includedirs { "eax" }
2019-07-07 12:09:11 +01:00
libdirs { "dxsdk/lib" }
2019-08-02 21:20:12 +01:00
libdirs { "milessdk/lib" }
2020-04-11 16:37:20 +01:00
2020-04-17 14:31:11 +01:00
filter "configurations:Debug or Release"
files { "src/fakerw/*.*" }
includedirs { "src/fakerw" }
2020-04-17 17:22:29 +01:00
includedirs { Librw }
libdirs { path.join(Librw, "lib/win-x86-d3d9/%{cfg.buildcfg}") }
2020-04-17 14:31:11 +01:00
links { "rw", "d3d9" }
filter {}
filter "configurations:DebugRW or ReleaseRW"
defines { "RWLIBS" }
includedirs { "rwsdk/include/d3d8" }
libdirs { "rwsdk/lib/d3d8/release" }
links { "rwcore", "rpworld", "rpmatfx", "rpskin", "rphanim", "rtbmp" }
2020-04-11 16:37:20 +01:00
filter {}
2020-04-15 13:05:24 +01:00
2019-07-20 14:13:16 +01:00
pbcommands = {
"setlocal EnableDelayedExpansion",
"set file=$(TargetPath)",
"FOR %%i IN (\"%file%\") DO (",
"set filename=%%~ni",
"set fileextension=%%~xi",
"set target=!path!!filename!!fileextension!",
"if exist \"!target!\" copy /y \"!file!\" \"!target!\"",
")" }
function setpaths (gamepath, exepath, scriptspath)
2019-07-20 14:30:03 +01:00
scriptspath = scriptspath or ""
2019-07-20 14:13:16 +01:00
if (gamepath) then
cmdcopy = { "set \"path=" .. gamepath .. scriptspath .. "\"" }
table.insert(cmdcopy, pbcommands)
postbuildcommands (cmdcopy)
debugdir (gamepath)
if (exepath) then
debugcommand (gamepath .. exepath)
dir, file = exepath:match'(.*/)(.*)'
debugdir (gamepath .. (dir or ""))
end
end
--targetdir ("bin/%{prj.name}/" .. scriptspath)
end
2019-05-15 15:52:37 +01:00
project "re3"
2020-04-17 14:31:11 +01:00
kind "WindowedApp"
2019-05-15 15:52:37 +01:00
language "C++"
targetname "re3"
targetdir "bin/%{cfg.buildcfg}"
2020-04-17 14:31:11 +01:00
targetextension ".exe"
2019-05-15 15:52:37 +01:00
characterset ("MBCS")
2019-06-06 19:33:57 +01:00
linkoptions "/SAFESEH:NO"
prebuildcommands { "cd \"../librw\" && premake5 " .. _ACTION .. " && msbuild \"build/librw.sln\" /property:Configuration=%{cfg.longname} /property:Platform=\"win-x86-d3d9\"" }
2019-05-15 15:52:37 +01:00
filter "configurations:Debug"
2020-04-17 14:31:11 +01:00
defines { "DEBUG", "LIBRW", "RW_D3D9" }
staticruntime "off"
2020-04-14 23:57:45 +01:00
symbols "Full"
2020-04-17 17:46:17 +01:00
setpaths("$(GTA_III_RE_DIR)/", "$(TargetFileName)", "")
2019-05-15 15:52:37 +01:00
filter "configurations:Release"
2020-04-17 14:31:11 +01:00
defines { "NDEBUG", "LIBRW", "RW_D3D9" }
2019-05-15 15:52:37 +01:00
optimize "On"
2020-04-17 14:31:11 +01:00
staticruntime "off"
2020-04-14 23:57:45 +01:00
symbols "Full"
2020-04-17 17:46:17 +01:00
setpaths("$(GTA_III_RE_DIR)/", "$(TargetFileName)", "")
2019-07-20 14:13:16 +01:00
filter "configurations:ReleaseFH"
defines { "NDEBUG" }
symbols "Full"
optimize "off"
staticruntime "on"
2020-04-17 17:46:17 +01:00
setpaths("$(GTA_III_RE_DIR)/", "$(TargetFileName)", "")
2020-04-11 16:37:20 +01:00
filter "configurations:DebugRW"
defines { "DEBUG" }
staticruntime "on"
symbols "On"
2020-04-17 17:46:17 +01:00
setpaths("$(GTA_III_RE_DIR)/", "$(TargetFileName)", "")
linkoptions "/SECTION:_rwcseg,ER!W /MERGE:_rwcseg=.text"
2020-04-11 16:37:20 +01:00
filter "configurations:ReleaseRW"
defines { "NDEBUG" }
optimize "On"
staticruntime "on"
2020-04-17 17:46:17 +01:00
setpaths("$(GTA_III_RE_DIR)/", "$(TargetFileName)", "")
linkoptions "/SECTION:_rwcseg,ER!W /MERGE:_rwcseg=.text"
2020-04-15 13:05:24 +01:00