gsc-tool/premake5.lua

160 lines
2.9 KiB
Lua
Raw Normal View History

2020-05-21 07:32:38 -04:00
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"
2023-01-23 17:31:08 -05:00
startproject "xsk-tool"
2020-05-21 07:32:38 -04:00
location "./build"
objdir "%{wks.location}/obj/%{cfg.buildcfg}/%{prj.name}"
targetdir "%{wks.location}/bin/%{cfg.platform}/%{cfg.buildcfg}"
2020-05-21 07:32:38 -04:00
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*"
2020-05-21 07:32:38 -04:00
buildoptions "/bigobj"
buildoptions "/Zc:__cplusplus"
buildoptions "/std:c++20"
2021-12-25 14:10:30 -05:00
filter {}
2020-05-21 07:32:38 -04:00
filter { "system:windows" }
systemversion "latest"
filter {}
filter { "system:macosx" }
systemversion "12.0"
filter {}
2020-05-21 07:32:38 -04:00
symbols "On"
staticruntime "On"
2022-03-16 11:13:33 -04:00
warnings "Extra"
2020-05-21 07:32:38 -04:00
if os.istarget("linux") or os.istarget("darwin") then
buildoptions "-pthread"
linkoptions "-pthread"
end
filter "configurations:release"
2020-05-21 07:32:38 -04:00
optimize "Full"
2022-03-15 12:01:13 -04:00
defines { "NDEBUG" }
2022-03-16 11:13:33 -04:00
flags { "FatalCompileWarnings" }
2021-12-25 14:10:30 -05:00
filter {}
2020-05-21 07:32:38 -04:00
filter "configurations:debug"
2020-05-21 07:32:38 -04:00
optimize "Debug"
2022-03-15 12:01:13 -04:00
defines { "DEBUG", "_DEBUG" }
2021-12-25 14:10:30 -05:00
filter {}
2020-05-21 07:32:38 -04:00
2023-01-23 17:31:08 -05:00
project "xsk-tool"
2020-05-21 07:32:38 -04:00
kind "ConsoleApp"
language "C++"
targetname "gsc-tool"
2023-01-23 17:31:08 -05:00
dependson "xsk-utils"
dependson "xsk-arc"
2023-01-23 17:31:08 -05:00
dependson "xsk-gsc"
2020-05-21 07:32:38 -04:00
files {
"./src/tool/**.h",
"./src/tool/**.hpp",
"./src/tool/**.cpp"
}
links {
2023-01-23 17:31:08 -05:00
"xsk-utils",
"xsk-arc",
2023-01-23 17:31:08 -05:00
"xsk-gsc",
2020-05-21 07:32:38 -04:00
}
includedirs {
"./include",
2020-05-21 07:32:38 -04:00
}
2023-01-23 17:31:08 -05:00
fmt:link()
2020-05-21 07:32:38 -04:00
zlib:link()
2023-01-23 17:31:08 -05:00
project "xsk-utils"
2020-05-21 07:32:38 -04:00
kind "StaticLib"
language "C++"
files {
"./src/utils/**.h",
"./src/utils/**.hpp",
"./src/utils/**.cpp"
}
includedirs {
"./include",
2020-05-21 07:32:38 -04:00
}
2023-01-23 17:31:08 -05:00
fmt:include()
2020-05-21 07:32:38 -04:00
zlib:include()
project "xsk-arc"
kind "StaticLib"
language "C++"
2023-01-23 17:31:08 -05:00
files {
"./src/arc/**.h",
"./src/arc/**.hpp",
"./src/arc/**.cpp"
2023-01-23 17:31:08 -05:00
}
includedirs {
"./include",
2023-01-23 17:31:08 -05:00
}
fmt:include()
project "xsk-gsc"
2023-01-23 17:31:08 -05:00
kind "StaticLib"
language "C++"
files {
"./src/gsc/**.h",
"./src/gsc/**.hpp",
"./src/gsc/**.cpp"
}
includedirs {
"./include",
}
2023-01-23 17:31:08 -05:00
fmt:include()
2020-05-21 07:32:38 -04:00
group "Dependencies"
zlib:project()
fmt:project()