2017-08-09 09:57:32 +01:00
|
|
|
GLEWdir = "C:/Users/aap/src/glew-2.1.0"
|
|
|
|
GLFW64dir = "C:/Users/aap/src/glfw-3.2.1.bin.WIN64"
|
|
|
|
|
2017-07-27 11:34:06 +01:00
|
|
|
workspace "librw"
|
|
|
|
location "build"
|
|
|
|
language "C++"
|
|
|
|
|
|
|
|
configurations { "Release", "Debug" }
|
|
|
|
filter { "system:windows" }
|
|
|
|
configurations { "ReleaseStatic" }
|
|
|
|
platforms { "win-x86-null", "win-x86-gl3", "win-x86-d3d9",
|
|
|
|
"win-amd64-null", "win-amd64-gl3", "win-amd64-d3d9" }
|
|
|
|
filter { "system:linux" }
|
|
|
|
platforms { "linux-x86-null", "linux-x86-gl3",
|
2017-08-12 09:25:25 +01:00
|
|
|
"linux-amd64-null", "linux-amd64-gl3",
|
|
|
|
"ps2" }
|
2017-07-27 11:34:06 +01:00
|
|
|
filter {}
|
|
|
|
|
|
|
|
filter "configurations:Debug"
|
|
|
|
defines { "DEBUG" }
|
|
|
|
symbols "On"
|
|
|
|
filter "configurations:Release*"
|
|
|
|
defines { "NDEBUG" }
|
|
|
|
optimize "On"
|
|
|
|
filter "configurations:ReleaseStatic"
|
|
|
|
flags { "StaticRuntime" }
|
|
|
|
|
|
|
|
filter { "platforms:*null" }
|
|
|
|
defines { "RW_NULL" }
|
|
|
|
filter { "platforms:*gl3" }
|
|
|
|
defines { "RW_GL3" }
|
|
|
|
filter { "platforms:*d3d9" }
|
|
|
|
defines { "RW_D3D9" }
|
2017-08-12 09:25:25 +01:00
|
|
|
filter { "platforms:ps2" }
|
2017-07-27 11:34:06 +01:00
|
|
|
defines { "RW_PS2" }
|
2017-08-12 09:25:25 +01:00
|
|
|
toolset "gcc"
|
|
|
|
gccprefix 'ee-'
|
|
|
|
buildoptions { "-nostdlib", "-fno-common" }
|
|
|
|
includedirs { "$(PS2SDK)/ee/include", "$(PS2SDK)/common/include" }
|
2017-07-27 11:34:06 +01:00
|
|
|
|
|
|
|
filter { "platforms:*amd64*" }
|
|
|
|
architecture "x86_64"
|
|
|
|
filter { "platforms:*x86*" }
|
|
|
|
architecture "x86"
|
|
|
|
|
|
|
|
filter { "platforms:win*" }
|
|
|
|
system "windows"
|
|
|
|
filter { "platforms:linux*" }
|
|
|
|
system "linux"
|
2017-07-27 14:05:30 +01:00
|
|
|
|
2017-08-09 09:57:32 +01:00
|
|
|
filter { "platforms:win*gl3" }
|
|
|
|
defines { "GLEW_STATIC" }
|
|
|
|
includedirs { path.join(GLEWdir, "include") }
|
|
|
|
includedirs { path.join(GLFW64dir, "include") }
|
|
|
|
|
2017-07-27 14:05:30 +01:00
|
|
|
filter "action:vs*"
|
2017-08-09 09:57:32 +01:00
|
|
|
buildoptions { "/wd4996", "/wd4244" }
|
2017-07-27 14:05:30 +01:00
|
|
|
|
2017-07-27 11:34:06 +01:00
|
|
|
filter {}
|
|
|
|
|
|
|
|
Libdir = "lib/%{cfg.platform}/%{cfg.buildcfg}"
|
|
|
|
Bindir = "bin/%{cfg.platform}/%{cfg.buildcfg}"
|
|
|
|
|
|
|
|
project "librw"
|
|
|
|
kind "StaticLib"
|
|
|
|
targetname "rw"
|
|
|
|
targetdir (Libdir)
|
|
|
|
files { "src/*.*" }
|
|
|
|
files { "src/*/*.*" }
|
|
|
|
|
|
|
|
project "dumprwtree"
|
|
|
|
kind "ConsoleApp"
|
|
|
|
targetdir (Bindir)
|
2017-08-24 14:10:34 +01:00
|
|
|
removeplatforms { "*gl3", "*d3d9", "ps2" }
|
2017-07-27 11:34:06 +01:00
|
|
|
files { "tools/dumprwtree/*" }
|
|
|
|
includedirs { "." }
|
|
|
|
libdirs { Libdir }
|
2017-07-27 14:05:30 +01:00
|
|
|
links { "librw" }
|
2017-08-09 23:42:33 +01:00
|
|
|
|
|
|
|
function findlibs()
|
|
|
|
filter { "platforms:linux*gl3" }
|
|
|
|
links { "GL", "GLEW", "glfw" }
|
|
|
|
filter { "platforms:win*gl3" }
|
|
|
|
defines { "GLEW_STATIC" }
|
|
|
|
filter { "platforms:win-amd64-gl3" }
|
|
|
|
libdirs { path.join(GLEWdir, "lib/Release/x64") }
|
|
|
|
libdirs { path.join(GLFW64dir, "lib-vc2015") }
|
|
|
|
filter { "platforms:win-x86-gl3" }
|
|
|
|
libdirs { path.join(GLEWdir, "lib/Release/Win32") }
|
|
|
|
filter { "platforms:win*gl3" }
|
|
|
|
links { "glew32s", "glfw3", "opengl32" }
|
|
|
|
filter { "platforms:*d3d9" }
|
|
|
|
links { "d3d9", "Xinput9_1_0" }
|
|
|
|
filter {}
|
|
|
|
end
|
|
|
|
|
|
|
|
function skeleton()
|
|
|
|
files { "skeleton/*.cpp", "skeleton/*.h" }
|
|
|
|
includedirs { "skeleton" }
|
|
|
|
end
|
|
|
|
|
|
|
|
function skeltool(dir)
|
|
|
|
targetdir (Bindir)
|
|
|
|
files { path.join("tools", dir, "*.cpp"),
|
|
|
|
path.join("tools", dir, "*.h") }
|
|
|
|
vpaths {
|
|
|
|
{["src"] = { path.join("tools", dir, "*") }},
|
|
|
|
{["skeleton"] = { "skeleton/*" }},
|
|
|
|
}
|
|
|
|
skeleton()
|
|
|
|
debugdir ( path.join("tools", dir) )
|
|
|
|
includedirs { "." }
|
|
|
|
libdirs { Libdir }
|
|
|
|
links { "librw" }
|
|
|
|
findlibs()
|
|
|
|
end
|
|
|
|
|
2017-08-12 09:25:25 +01:00
|
|
|
function vucode()
|
|
|
|
filter "files:**.dsm"
|
|
|
|
buildcommands {
|
|
|
|
'cpp "%{file.relpath}" | dvp-as -o "%{cfg.objdir}/%{file.basename}.o"'
|
|
|
|
}
|
|
|
|
buildoutputs { '%{cfg.objdir}/%{file.basename}.o' }
|
|
|
|
filter {}
|
|
|
|
end
|
|
|
|
|
2017-08-09 23:42:33 +01:00
|
|
|
project "clumpview"
|
|
|
|
kind "WindowedApp"
|
|
|
|
characterset ("MBCS")
|
|
|
|
skeltool("clumpview")
|
|
|
|
flags { "WinMain" }
|
|
|
|
removeplatforms { "*null" }
|
2017-08-12 09:25:25 +01:00
|
|
|
|
|
|
|
project "ps2test"
|
|
|
|
kind "ConsoleApp"
|
|
|
|
targetdir (Bindir)
|
|
|
|
vucode()
|
|
|
|
removeplatforms { "*gl3", "*d3d9", "*null" }
|
|
|
|
targetextension '.elf'
|
|
|
|
includedirs { "." }
|
|
|
|
files { "tools/ps2test/*.cpp",
|
|
|
|
"tools/ps2test/vu/*.dsm",
|
|
|
|
"tools/ps2test/*.h" }
|
|
|
|
linkoptions '$(PS2SDK)/ee/startup/crt0.o'
|
|
|
|
linkoptions { '-mno-crt0', "-T$(PS2SDK)/ee/startup/linkfile" }
|
|
|
|
libdirs { "$(PS2SDK)/ee/lib" }
|
|
|
|
links { "librw" }
|
|
|
|
-- "c -lc" is a hack because we need -lc twice for some reason
|
|
|
|
links { "c -lc", "kernel", "mf" }
|
2017-08-18 18:28:01 +01:00
|
|
|
|
|
|
|
project "ps2rastertest"
|
|
|
|
kind "ConsoleApp"
|
|
|
|
targetdir (Bindir)
|
|
|
|
removeplatforms { "*gl3", "*d3d9" }
|
|
|
|
files { "tools/ps2rastertest/*.cpp" }
|
|
|
|
includedirs { "." }
|
|
|
|
libdirs { Libdir }
|
|
|
|
links { "librw" }
|