475 lines
8.2 KiB
Lua
475 lines
8.2 KiB
Lua
dependencies = { base = path.getrelative(os.getcwd(), path.getabsolute("deps")) }
|
|
|
|
function dependencies.load()
|
|
dir = path.join(dependencies.base, "*.lua")
|
|
deps = os.matchfiles(dir)
|
|
|
|
for i, dep in pairs(deps) do
|
|
dep = dep:gsub(".lua", "")
|
|
require(dep)
|
|
end
|
|
end
|
|
|
|
dependencies.load()
|
|
-------------------------------------------------
|
|
workspace "gsc-tool"
|
|
startproject "xsk-tool"
|
|
location "./build"
|
|
objdir "%{wks.location}/obj/%{cfg.buildcfg}/%{prj.name}"
|
|
targetdir "%{wks.location}/bin/%{cfg.platform}/%{cfg.buildcfg}"
|
|
targetname "%{prj.name}"
|
|
|
|
configurations { "debug", "release" }
|
|
|
|
if os.istarget("darwin") then
|
|
platforms { "x64", "arm64" }
|
|
else
|
|
platforms { "x86", "x64" }
|
|
end
|
|
|
|
filter "platforms:x86"
|
|
architecture "x86"
|
|
filter {}
|
|
|
|
filter "platforms:x64"
|
|
architecture "x86_64"
|
|
filter {}
|
|
|
|
filter "platforms:arm64"
|
|
architecture "ARM64"
|
|
filter {}
|
|
|
|
filter { "language:C++", "toolset:not msc*" }
|
|
buildoptions "-std=c++20"
|
|
filter {}
|
|
|
|
filter "toolset:msc*"
|
|
buildoptions "/bigobj"
|
|
buildoptions "/Zc:__cplusplus"
|
|
buildoptions "/std:c++20"
|
|
filter {}
|
|
|
|
filter { "system:windows" }
|
|
systemversion "latest"
|
|
filter {}
|
|
|
|
filter { "system:macosx" }
|
|
systemversion "12.0"
|
|
filter {}
|
|
|
|
symbols "On"
|
|
staticruntime "On"
|
|
warnings "Extra"
|
|
|
|
if os.istarget("linux") or os.istarget("darwin") then
|
|
buildoptions "-pthread"
|
|
linkoptions "-pthread"
|
|
end
|
|
|
|
filter "configurations:release"
|
|
optimize "Full"
|
|
defines { "NDEBUG" }
|
|
flags { "FatalCompileWarnings" }
|
|
filter {}
|
|
|
|
filter "configurations:debug"
|
|
optimize "Debug"
|
|
defines { "DEBUG", "_DEBUG" }
|
|
filter {}
|
|
|
|
project "xsk-tool"
|
|
kind "ConsoleApp"
|
|
language "C++"
|
|
targetname "gsc-tool"
|
|
|
|
dependson "xsk-utils"
|
|
dependson "xsk-gsc"
|
|
dependson "xsk-iw5_pc"
|
|
dependson "xsk-iw5_ps"
|
|
dependson "xsk-iw5_xb"
|
|
dependson "xsk-iw6_pc"
|
|
dependson "xsk-iw6_ps"
|
|
dependson "xsk-iw6_xb"
|
|
dependson "xsk-s1_pc"
|
|
dependson "xsk-s1_ps"
|
|
dependson "xsk-s1_xb"
|
|
dependson "xsk-iw7"
|
|
dependson "xsk-iw8"
|
|
dependson "xsk-iw9"
|
|
dependson "xsk-h1"
|
|
dependson "xsk-h2"
|
|
dependson "xsk-s2"
|
|
dependson "xsk-s4"
|
|
dependson "xsk-t6"
|
|
|
|
files {
|
|
"./src/tool/**.h",
|
|
"./src/tool/**.hpp",
|
|
"./src/tool/**.cpp"
|
|
}
|
|
|
|
links {
|
|
"xsk-utils",
|
|
"xsk-gsc",
|
|
"xsk-iw5_pc",
|
|
"xsk-iw5_ps",
|
|
"xsk-iw5_xb",
|
|
"xsk-iw6_pc",
|
|
"xsk-iw6_ps",
|
|
"xsk-iw6_xb",
|
|
"xsk-s1_pc",
|
|
"xsk-s1_ps",
|
|
"xsk-s1_xb",
|
|
"xsk-iw7",
|
|
"xsk-iw8",
|
|
"xsk-iw9",
|
|
"xsk-h1",
|
|
"xsk-h2",
|
|
"xsk-s2",
|
|
"xsk-s4",
|
|
"xsk-t6",
|
|
}
|
|
|
|
includedirs {
|
|
"./src"
|
|
}
|
|
|
|
fmt:link()
|
|
zlib:link()
|
|
|
|
project "xsk-utils"
|
|
kind "StaticLib"
|
|
language "C++"
|
|
|
|
files {
|
|
"./src/utils/**.h",
|
|
"./src/utils/**.hpp",
|
|
"./src/utils/**.cpp"
|
|
}
|
|
|
|
includedirs {
|
|
"./src"
|
|
}
|
|
|
|
fmt:include()
|
|
zlib:include()
|
|
|
|
project "xsk-gsc"
|
|
kind "StaticLib"
|
|
language "C++"
|
|
|
|
files {
|
|
"./src/gsc/**.h",
|
|
"./src/gsc/**.hpp",
|
|
"./src/gsc/**.cpp"
|
|
}
|
|
|
|
includedirs {
|
|
"./src"
|
|
}
|
|
|
|
fmt:include()
|
|
|
|
project "xsk-iw5_pc"
|
|
kind "StaticLib"
|
|
language "C++"
|
|
|
|
files {
|
|
"./src/iw5/iw5_pc.hpp",
|
|
"./src/iw5/iw5_pc.cpp",
|
|
"./src/iw5/iw5_pc_code.cpp",
|
|
"./src/iw5/iw5_pc_func.cpp",
|
|
"./src/iw5/iw5_pc_meth.cpp",
|
|
"./src/iw5/iw5_pc_token.cpp"
|
|
}
|
|
|
|
includedirs {
|
|
"./src"
|
|
}
|
|
|
|
fmt:include()
|
|
|
|
project "xsk-iw5_ps"
|
|
kind "StaticLib"
|
|
language "C++"
|
|
|
|
files {
|
|
"./src/iw5/iw5_ps.hpp",
|
|
"./src/iw5/iw5_ps.cpp",
|
|
"./src/iw5/iw5_ps_code.cpp",
|
|
"./src/iw5/iw5_ps_func.cpp",
|
|
"./src/iw5/iw5_ps_meth.cpp",
|
|
"./src/iw5/iw5_ps_token.cpp"
|
|
}
|
|
|
|
includedirs {
|
|
"./src"
|
|
}
|
|
|
|
fmt:include()
|
|
|
|
project "xsk-iw5_xb"
|
|
kind "StaticLib"
|
|
language "C++"
|
|
|
|
files {
|
|
"./src/iw5/iw5_xb.hpp",
|
|
"./src/iw5/iw5_xb.cpp",
|
|
"./src/iw5/iw5_xb_code.cpp",
|
|
"./src/iw5/iw5_xb_func.cpp",
|
|
"./src/iw5/iw5_xb_meth.cpp",
|
|
"./src/iw5/iw5_xb_token.cpp"
|
|
}
|
|
|
|
includedirs {
|
|
"./src"
|
|
}
|
|
|
|
fmt:include()
|
|
|
|
project "xsk-iw6_pc"
|
|
kind "StaticLib"
|
|
language "C++"
|
|
|
|
files {
|
|
"./src/iw6/iw6_pc.hpp",
|
|
"./src/iw6/iw6_pc.cpp",
|
|
"./src/iw6/iw6_pc_code.cpp",
|
|
"./src/iw6/iw6_pc_func.cpp",
|
|
"./src/iw6/iw6_pc_meth.cpp",
|
|
"./src/iw6/iw6_pc_token.cpp"
|
|
}
|
|
|
|
includedirs {
|
|
"./src"
|
|
}
|
|
|
|
fmt:include()
|
|
|
|
project "xsk-iw6_ps"
|
|
kind "StaticLib"
|
|
language "C++"
|
|
|
|
files {
|
|
"./src/iw6/iw6_ps.hpp",
|
|
"./src/iw6/iw6_ps.cpp",
|
|
"./src/iw6/iw6_ps_code.cpp",
|
|
"./src/iw6/iw6_ps_func.cpp",
|
|
"./src/iw6/iw6_ps_meth.cpp",
|
|
"./src/iw6/iw6_ps_token.cpp"
|
|
}
|
|
|
|
includedirs {
|
|
"./src"
|
|
}
|
|
|
|
fmt:include()
|
|
|
|
project "xsk-iw6_xb"
|
|
kind "StaticLib"
|
|
language "C++"
|
|
|
|
files {
|
|
"./src/iw6/iw6_xb.hpp",
|
|
"./src/iw6/iw6_xb.cpp",
|
|
"./src/iw6/iw6_xb_code.cpp",
|
|
"./src/iw6/iw6_xb_func.cpp",
|
|
"./src/iw6/iw6_xb_meth.cpp",
|
|
"./src/iw6/iw6_xb_token.cpp"
|
|
}
|
|
|
|
includedirs {
|
|
"./src"
|
|
}
|
|
|
|
fmt:include()
|
|
|
|
project "xsk-s1_pc"
|
|
kind "StaticLib"
|
|
language "C++"
|
|
|
|
files {
|
|
"./src/s1/s1_pc.hpp",
|
|
"./src/s1/s1_pc.cpp",
|
|
"./src/s1/s1_pc_code.cpp",
|
|
"./src/s1/s1_pc_func.cpp",
|
|
"./src/s1/s1_pc_meth.cpp",
|
|
"./src/s1/s1_pc_token.cpp"
|
|
}
|
|
|
|
includedirs {
|
|
"./src"
|
|
}
|
|
|
|
fmt:include()
|
|
|
|
project "xsk-s1_ps"
|
|
kind "StaticLib"
|
|
language "C++"
|
|
|
|
files {
|
|
"./src/s1/s1_ps.hpp",
|
|
"./src/s1/s1_ps.cpp",
|
|
"./src/s1/s1_ps_code.cpp",
|
|
"./src/s1/s1_ps_func.cpp",
|
|
"./src/s1/s1_ps_meth.cpp",
|
|
"./src/s1/s1_ps_token.cpp"
|
|
}
|
|
|
|
includedirs {
|
|
"./src"
|
|
}
|
|
|
|
fmt:include()
|
|
|
|
project "xsk-s1_xb"
|
|
kind "StaticLib"
|
|
language "C++"
|
|
|
|
files {
|
|
"./src/s1/s1_xb.hpp",
|
|
"./src/s1/s1_xb.cpp",
|
|
"./src/s1/s1_xb_code.cpp",
|
|
"./src/s1/s1_xb_func.cpp",
|
|
"./src/s1/s1_xb_meth.cpp",
|
|
"./src/s1/s1_xb_token.cpp"
|
|
}
|
|
|
|
includedirs {
|
|
"./src"
|
|
}
|
|
|
|
fmt:include()
|
|
|
|
project "xsk-iw7"
|
|
kind "StaticLib"
|
|
language "C++"
|
|
|
|
files {
|
|
"./src/iw7/**.h",
|
|
"./src/iw7/**.hpp",
|
|
"./src/iw7/**.cpp"
|
|
}
|
|
|
|
includedirs {
|
|
"./src"
|
|
}
|
|
|
|
fmt:include()
|
|
|
|
project "xsk-iw8"
|
|
kind "StaticLib"
|
|
language "C++"
|
|
|
|
files {
|
|
"./src/iw8/**.h",
|
|
"./src/iw8/**.hpp",
|
|
"./src/iw8/**.cpp"
|
|
}
|
|
|
|
includedirs {
|
|
"./src"
|
|
}
|
|
|
|
fmt:include()
|
|
|
|
project "xsk-iw9"
|
|
kind "StaticLib"
|
|
language "C++"
|
|
|
|
files {
|
|
"./src/iw9/**.h",
|
|
"./src/iw9/**.hpp",
|
|
"./src/iw9/**.cpp"
|
|
}
|
|
|
|
includedirs {
|
|
"./src"
|
|
}
|
|
|
|
fmt:include()
|
|
|
|
project "xsk-h1"
|
|
kind "StaticLib"
|
|
language "C++"
|
|
|
|
files {
|
|
"./src/h1/**.h",
|
|
"./src/h1/**.hpp",
|
|
"./src/h1/**.cpp"
|
|
}
|
|
|
|
includedirs {
|
|
"./src"
|
|
}
|
|
|
|
fmt:include()
|
|
|
|
project "xsk-h2"
|
|
kind "StaticLib"
|
|
language "C++"
|
|
|
|
files {
|
|
"./src/h2/**.h",
|
|
"./src/h2/**.hpp",
|
|
"./src/h2/**.cpp"
|
|
}
|
|
|
|
includedirs {
|
|
"./src"
|
|
}
|
|
|
|
fmt:include()
|
|
|
|
project "xsk-s2"
|
|
kind "StaticLib"
|
|
language "C++"
|
|
|
|
files {
|
|
"./src/s2/**.h",
|
|
"./src/s2/**.hpp",
|
|
"./src/s2/**.cpp"
|
|
}
|
|
|
|
includedirs {
|
|
"./src"
|
|
}
|
|
|
|
fmt:include()
|
|
|
|
project "xsk-s4"
|
|
kind "StaticLib"
|
|
language "C++"
|
|
|
|
files {
|
|
"./src/s4/**.h",
|
|
"./src/s4/**.hpp",
|
|
"./src/s4/**.cpp"
|
|
}
|
|
|
|
includedirs {
|
|
"./src"
|
|
}
|
|
|
|
fmt:include()
|
|
|
|
project "xsk-t6"
|
|
kind "StaticLib"
|
|
language "C++"
|
|
|
|
files {
|
|
"./src/t6/**.h",
|
|
"./src/t6/**.hpp",
|
|
"./src/t6/**.cpp"
|
|
}
|
|
|
|
includedirs {
|
|
"./src"
|
|
}
|
|
|
|
fmt:include()
|
|
|
|
group "Dependencies"
|
|
fmt:project()
|
|
zlib:project()
|