mirror of
https://gitlab.com/GaryOderNichts/re3-wiiu.git
synced 2024-11-26 11:04:15 +01:00
premake stuff
This commit is contained in:
parent
b32eedc230
commit
d5256f74e5
@ -3,24 +3,21 @@ image: Visual Studio 2019
|
|||||||
configuration:
|
configuration:
|
||||||
- Debug
|
- Debug
|
||||||
- Release
|
- Release
|
||||||
platform: Win32
|
platform:
|
||||||
|
- win-x86-librw_d3d9-mss
|
||||||
environment:
|
environment:
|
||||||
APPVEYOR_SAVE_CACHE_ON_ERROR: true
|
APPVEYOR_SAVE_CACHE_ON_ERROR: true
|
||||||
install:
|
install:
|
||||||
- cmd: >-
|
- cmd: >-
|
||||||
git submodule update --init --recursive
|
git submodule update --init --recursive
|
||||||
|
|
||||||
copy premake5.exe "librw/premake5.exe"
|
premake5 vs2019
|
||||||
|
|
||||||
cd "librw" && premake5 vs2019 && msbuild "build/librw.sln" /property:Configuration=%CONFIGURATION% /property:Platform="win-x86-d3d9"
|
|
||||||
|
|
||||||
cd "%APPVEYOR_BUILD_FOLDER%" && premake5 vs2019
|
|
||||||
|
|
||||||
build:
|
build:
|
||||||
project: build/re3.sln
|
project: build/re3.sln
|
||||||
verbosity: minimal
|
verbosity: minimal
|
||||||
artifacts:
|
artifacts:
|
||||||
- path: bin/%CONFIGURATION%/re3.exe
|
- path: bin/%PLATFORM%/%CONFIGURATION%/re3.exe
|
||||||
name: re3.exe
|
name: re3.exe
|
||||||
- path: bin/%CONFIGURATION%/re3.pdb
|
- path: bin/%PLATFORM%/%CONFIGURATION%/re3.pdb
|
||||||
name: re3.pdb
|
name: re3.pdb
|
||||||
|
180
premake5.lua
180
premake5.lua
@ -1,8 +1,85 @@
|
|||||||
Librw = os.getenv("LIBRW") or "librw"
|
Librw = os.getenv("LIBRW") or "librw"
|
||||||
|
|
||||||
workspace "re3"
|
workspace "re3"
|
||||||
configurations { "Debug", "Release", "ReleaseFH", "DebugRW", "ReleaseRW", "ReleaseGLFW" }
|
language "C++"
|
||||||
|
configurations { "Debug", "Release" }
|
||||||
location "build"
|
location "build"
|
||||||
|
symbols "Full"
|
||||||
|
staticruntime "off"
|
||||||
|
filter { "system:windows" }
|
||||||
|
platforms {
|
||||||
|
"win-x86-RW33_d3d8-mss",
|
||||||
|
"win-x86-librw_d3d9-mss",
|
||||||
|
"win-x86-librw_gl3_glfw-mss",
|
||||||
|
}
|
||||||
|
|
||||||
|
filter "configurations:Debug"
|
||||||
|
defines { "DEBUG" }
|
||||||
|
|
||||||
|
filter "configurations:Release"
|
||||||
|
defines { "NDEBUG" }
|
||||||
|
optimize "On"
|
||||||
|
|
||||||
|
filter { "platforms:win*" }
|
||||||
|
system "windows"
|
||||||
|
|
||||||
|
filter { "platforms:*x86*" }
|
||||||
|
architecture "x86"
|
||||||
|
|
||||||
|
filter { "platforms:*librw_d3d9*" }
|
||||||
|
defines { "RW_D3D9" }
|
||||||
|
|
||||||
|
filter "platforms:*librw_gl3_glfw*"
|
||||||
|
defines { "RW_GL3" }
|
||||||
|
defines { "GLEW_STATIC" }
|
||||||
|
includedirs { "glfw-3.3.2.bin.WIN32/include" }
|
||||||
|
includedirs { "glew-2.1.0/include" }
|
||||||
|
filter {}
|
||||||
|
|
||||||
|
pbcommands = {
|
||||||
|
"setlocal EnableDelayedExpansion",
|
||||||
|
"set file=$(TargetPath)",
|
||||||
|
"FOR %%i IN (\"%file%\") DO (",
|
||||||
|
"set filename=%%~ni",
|
||||||
|
"set fileextension=%%~xi",
|
||||||
|
"set target=!path!!filename!!fileextension!",
|
||||||
|
"copy /y \"!file!\" \"!target!\"",
|
||||||
|
")" }
|
||||||
|
|
||||||
|
function setpaths (gamepath, exepath, scriptspath)
|
||||||
|
scriptspath = scriptspath or ""
|
||||||
|
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
|
||||||
|
|
||||||
|
project "librw"
|
||||||
|
kind "StaticLib"
|
||||||
|
targetname "rw"
|
||||||
|
targetdir "lib/%{cfg.platform}/%{cfg.buildcfg}"
|
||||||
|
files { path.join(Librw, "src/*.*") }
|
||||||
|
files { path.join(Librw, "src/*/*.*") }
|
||||||
|
filter "platforms:*RW33*"
|
||||||
|
flags { "ExcludeFromBuild" }
|
||||||
|
filter {}
|
||||||
|
|
||||||
|
project "re3"
|
||||||
|
kind "WindowedApp"
|
||||||
|
targetname "re3"
|
||||||
|
targetdir "bin/%{cfg.platform}/%{cfg.buildcfg}"
|
||||||
|
targetextension ".exe"
|
||||||
|
characterset ("MBCS")
|
||||||
|
linkoptions "/SAFESEH:NO"
|
||||||
|
|
||||||
|
|
||||||
files { "src/*.*" }
|
files { "src/*.*" }
|
||||||
files { "src/animation/*.*" }
|
files { "src/animation/*.*" }
|
||||||
@ -48,105 +125,38 @@ workspace "re3"
|
|||||||
includedirs { "src/extras" }
|
includedirs { "src/extras" }
|
||||||
includedirs { "eax" }
|
includedirs { "eax" }
|
||||||
|
|
||||||
includedirs { "dxsdk/include" }
|
|
||||||
includedirs { "milessdk/include" }
|
includedirs { "milessdk/include" }
|
||||||
includedirs { "eax" }
|
includedirs { "eax" }
|
||||||
|
|
||||||
libdirs { "dxsdk/lib" }
|
|
||||||
libdirs { "milessdk/lib" }
|
libdirs { "milessdk/lib" }
|
||||||
|
|
||||||
filter "configurations:Debug or Release"
|
setpaths("$(GTA_III_RE_DIR)/", "$(TargetFileName)", "")
|
||||||
files { "src/fakerw/*.*" }
|
|
||||||
includedirs { "src/fakerw" }
|
|
||||||
includedirs { Librw }
|
|
||||||
libdirs { path.join(Librw, "lib/win-x86-d3d9/%{cfg.buildcfg}") }
|
|
||||||
links { "rw", "d3d9" }
|
|
||||||
filter {}
|
|
||||||
|
|
||||||
filter "configurations:DebugRW or ReleaseRW"
|
filter "platforms:*RW33*"
|
||||||
|
staticruntime "on"
|
||||||
includedirs { "rwsdk/include/d3d8" }
|
includedirs { "rwsdk/include/d3d8" }
|
||||||
libdirs { "rwsdk/lib/d3d8/release" }
|
libdirs { "rwsdk/lib/d3d8/release" }
|
||||||
links { "rwcore", "rpworld", "rpmatfx", "rpskin", "rphanim", "rtbmp", "rtquat", "rtcharse" }
|
links { "rwcore", "rpworld", "rpmatfx", "rpskin", "rphanim", "rtbmp", "rtquat", "rtcharse" }
|
||||||
filter {}
|
defines { "RWLIBS" }
|
||||||
|
linkoptions "/SECTION:_rwcseg,ER!W /MERGE:_rwcseg=.text"
|
||||||
|
|
||||||
filter "configurations:ReleaseGLFW"
|
filter "platforms:*librw*"
|
||||||
defines { "GLEW_STATIC", "GLFW_DLL" }
|
defines { "LIBRW" }
|
||||||
files { "src/fakerw/*.*" }
|
files { "src/fakerw/*.*" }
|
||||||
includedirs { "src/fakerw" }
|
includedirs { "src/fakerw" }
|
||||||
includedirs { Librw }
|
includedirs { Librw }
|
||||||
includedirs { "glfw-3.3.2.bin.WIN32/include" }
|
libdirs { "lib/%{cfg.platform}/%{cfg.buildcfg}" }
|
||||||
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" }
|
links { "rw" }
|
||||||
filter {}
|
|
||||||
|
|
||||||
pbcommands = {
|
filter "platforms:*d3d*"
|
||||||
"setlocal EnableDelayedExpansion",
|
includedirs { "dxsdk/include" }
|
||||||
"set file=$(TargetPath)",
|
libdirs { "dxsdk/lib" }
|
||||||
"FOR %%i IN (\"%file%\") DO (",
|
|
||||||
"set filename=%%~ni",
|
|
||||||
"set fileextension=%%~xi",
|
|
||||||
"set target=!path!!filename!!fileextension!",
|
|
||||||
"copy /y \"!file!\" \"!target!\"",
|
|
||||||
")" }
|
|
||||||
|
|
||||||
function setpaths (gamepath, exepath, scriptspath)
|
filter "platforms:*d3d9*"
|
||||||
scriptspath = scriptspath or ""
|
links { "d3d9" }
|
||||||
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
|
|
||||||
|
|
||||||
project "re3"
|
filter "platforms:*gl3_glfw*"
|
||||||
kind "WindowedApp"
|
libdirs { "glew-2.1.0/lib/Release/Win32" }
|
||||||
language "C++"
|
libdirs { "glfw-3.3.2.bin.WIN32/lib-" .. string.gsub(_ACTION, "vs", "vc") }
|
||||||
targetname "re3"
|
links { "opengl32", "glew32s", "glfw3" }
|
||||||
targetdir "bin/%{cfg.buildcfg}"
|
|
||||||
targetextension ".exe"
|
|
||||||
characterset ("MBCS")
|
|
||||||
linkoptions "/SAFESEH:NO"
|
|
||||||
|
|
||||||
setpaths("$(GTA_III_RE_DIR)/", "$(TargetFileName)", "")
|
|
||||||
symbols "Full"
|
|
||||||
staticruntime "off"
|
|
||||||
|
|
||||||
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\"" }
|
|
||||||
defines { "LIBRW", "RW_D3D9" }
|
|
||||||
|
|
||||||
filter "configurations:*RW"
|
|
||||||
defines { "RWLIBS" }
|
|
||||||
staticruntime "on"
|
|
||||||
linkoptions "/SECTION:_rwcseg,ER!W /MERGE:_rwcseg=.text"
|
|
||||||
|
|
||||||
filter "configurations:*GLFW"
|
|
||||||
prebuildcommands { "cd \"../librw\" && premake5 " .. _ACTION .. " && msbuild \"build/librw.sln\" /property:Configuration=Release /property:Platform=\"win-x86-gl3\"" }
|
|
||||||
defines { "LIBRW", "RW_GL3" }
|
|
||||||
|
|
||||||
filter "configurations:Debug*"
|
|
||||||
defines { "DEBUG" }
|
|
||||||
|
|
||||||
filter "configurations:Release*"
|
|
||||||
defines { "NDEBUG" }
|
|
||||||
optimize "On"
|
|
||||||
|
|
||||||
|
|
||||||
filter "configurations:ReleaseFH"
|
|
||||||
prebuildcommands {}
|
|
||||||
optimize "off"
|
|
||||||
staticruntime "on"
|
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user