re3/premake5.lua

153 lines
4.4 KiB
Lua
Raw Normal View History

2020-04-17 16:22:29 +00:00
Librw = os.getenv("LIBRW") or "librw"
2020-04-15 12:05:24 +00:00
2019-05-15 14:52:37 +00:00
workspace "re3"
2020-04-26 10:25:03 +00:00
configurations { "Debug", "Release", "ReleaseFH", "DebugRW", "ReleaseRW", "ReleaseGLFW" }
2019-05-15 14:52:37 +00:00
location "build"
files { "src/*.*" }
2019-07-07 11:09:11 +00:00
files { "src/animation/*.*" }
files { "src/audio/*.*" }
files { "src/control/*.*" }
files { "src/core/*.*" }
files { "src/entities/*.*" }
2019-05-15 14:52:37 +00:00
files { "src/math/*.*" }
files { "src/modelinfo/*.*" }
2019-07-07 11:09:11 +00:00
files { "src/objects/*.*" }
files { "src/peds/*.*" }
2019-05-15 14:52:37 +00:00
files { "src/render/*.*" }
2020-04-11 15:37:20 +00:00
files { "src/rw/*.*" }
2020-01-13 23:13:42 +00:00
files { "src/save/*.*" }
2019-07-07 11:09:11 +00:00
files { "src/skel/*.*" }
files { "src/skel/win/*.*" }
2020-04-26 10:25:03 +00:00
files { "src/skel/glfw/*.*" }
2019-10-20 17:31:59 +00:00
files { "src/text/*.*" }
2019-07-07 11:09:11 +00:00
files { "src/vehicles/*.*" }
files { "src/weapons/*.*" }
2020-04-24 11:27:02 +00:00
files { "src/extras/*.*" }
2019-08-02 20:20:12 +00:00
files { "eax/*.*" }
2019-05-15 14:52:37 +00:00
2019-05-18 10:39:39 +00:00
includedirs { "src" }
2019-07-07 11:09:11 +00:00
includedirs { "src/animation" }
includedirs { "src/audio" }
includedirs { "src/control" }
includedirs { "src/core" }
includedirs { "src/entities" }
2019-07-08 19:44:32 +00:00
includedirs { "src/math" }
2019-07-07 11:09:11 +00:00
includedirs { "src/modelinfo" }
includedirs { "src/objects" }
includedirs { "src/peds" }
includedirs { "src/render" }
2020-04-11 15:37:20 +00:00
includedirs { "src/rw" }
2020-01-13 23:13:42 +00:00
includedirs { "src/save/" }
includedirs { "src/skel/" }
includedirs { "src/skel/win" }
2020-04-26 10:25:03 +00:00
includedirs { "src/skel/glfw" }
2019-10-20 17:31:59 +00:00
includedirs { "src/text" }
2019-07-07 11:09:11 +00:00
includedirs { "src/vehicles" }
includedirs { "src/weapons" }
2020-04-24 11:27:02 +00:00
includedirs { "src/extras" }
2019-08-02 20:20:12 +00:00
includedirs { "eax" }
2019-07-07 11:09:11 +00:00
includedirs { "dxsdk/include" }
2019-08-02 20:20:12 +00:00
includedirs { "milessdk/include" }
includedirs { "eax" }
2019-07-07 11:09:11 +00:00
libdirs { "dxsdk/lib" }
2019-08-02 20:20:12 +00:00
libdirs { "milessdk/lib" }
2020-04-11 15:37:20 +00:00
2020-04-17 13:31:11 +00:00
filter "configurations:Debug or Release"
files { "src/fakerw/*.*" }
includedirs { "src/fakerw" }
2020-04-17 16:22:29 +00:00
includedirs { Librw }
libdirs { path.join(Librw, "lib/win-x86-d3d9/%{cfg.buildcfg}") }
2020-04-17 13:31:11 +00:00
links { "rw", "d3d9" }
filter {}
filter "configurations:DebugRW or ReleaseRW"
includedirs { "rwsdk/include/d3d8" }
libdirs { "rwsdk/lib/d3d8/release" }
links { "rwcore", "rpworld", "rpmatfx", "rpskin", "rphanim", "rtbmp", "rtquat", "rtcharse" }
2020-04-11 15:37:20 +00:00
filter {}
2020-04-15 12:05:24 +00:00
2020-04-26 10:25:03 +00:00
filter "configurations:ReleaseGLFW"
defines { "GLEW_STATIC", "GLFW_DLL" }
files { "src/fakerw/*.*" }
includedirs { "src/fakerw" }
includedirs { Librw }
includedirs { "glfw-3.3.2.bin.WIN32/include" }
includedirs { "glew-2.1.0/include" }
libdirs { path.join(Librw, "lib/win-x86-gl3/Release") }
libdirs { "glew-2.1.0/lib/Release/Win32" }
libdirs { "glfw-3.3.2.bin.WIN32/lib-vc2015" }
links { "opengl32" }
links { "glew32s" }
links { "glfw3dll" }
links { "rw" }
filter {}
2019-07-20 13:13:16 +00:00
pbcommands = {
"setlocal EnableDelayedExpansion",
"set file=$(TargetPath)",
"FOR %%i IN (\"%file%\") DO (",
"set filename=%%~ni",
"set fileextension=%%~xi",
"set target=!path!!filename!!fileextension!",
2020-04-24 11:27:02 +00:00
"copy /y \"!file!\" \"!target!\"",
2019-07-20 13:13:16 +00:00
")" }
function setpaths (gamepath, exepath, scriptspath)
2019-07-20 13:30:03 +00:00
scriptspath = scriptspath or ""
2019-07-20 13:13:16 +00: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 14:52:37 +00:00
project "re3"
2020-04-17 13:31:11 +00:00
kind "WindowedApp"
2019-05-15 14:52:37 +00:00
language "C++"
targetname "re3"
targetdir "bin/%{cfg.buildcfg}"
2020-04-17 13:31:11 +00:00
targetextension ".exe"
2019-05-15 14:52:37 +00:00
characterset ("MBCS")
2019-06-06 18:33:57 +00:00
linkoptions "/SAFESEH:NO"
2020-04-18 11:20:49 +00:00
setpaths("$(GTA_III_RE_DIR)/", "$(TargetFileName)", "")
symbols "Full"
staticruntime "off"
2020-04-26 10:25:03 +00:00
filter "configurations:Debug or Release or ReleaseFH"
prebuildcommands { "cd \"../librw\" && premake5 " .. _ACTION .. " && msbuild \"build/librw.sln\" /property:Configuration=%{cfg.longname} /property:Platform=\"win-x86-d3d9\"" }
2020-04-18 11:20:49 +00:00
defines { "LIBRW", "RW_D3D9" }
filter "configurations:*RW"
defines { "RWLIBS" }
2020-04-11 15:37:20 +00:00
staticruntime "on"
2020-04-17 16:46:17 +00:00
linkoptions "/SECTION:_rwcseg,ER!W /MERGE:_rwcseg=.text"
2020-04-26 10:25:03 +00:00
filter "configurations:*GLFW"
prebuildcommands { "cd \"../librw\" && premake5 " .. _ACTION .. " && msbuild \"build/librw.sln\" /property:Configuration=Release /property:Platform=\"win-x86-gl3\"" }
defines { "LIBRW", "RW_GL3" }
2020-04-18 11:20:49 +00:00
filter "configurations:Debug*"
defines { "DEBUG" }
filter "configurations:Release*"
2020-04-11 15:37:20 +00:00
defines { "NDEBUG" }
optimize "On"
2020-04-18 11:20:49 +00:00
filter "configurations:ReleaseFH"
prebuildcommands {}
optimize "off"
2020-04-11 15:37:20 +00:00
staticruntime "on"
2020-04-15 12:05:24 +00:00