Files
sdk-cpp/premake5.lua
Guilherme Werner 21f5523798 Update premake5.lua
2023-12-03 12:34:54 -03:00

33 lines
519 B
Lua

--- @diagnostic disable: undefined-global
workspace "tribufu_cpp"
location "."
configurations { "debug", "release" }
if _ACTION == "vs2022" then
platforms {
"windows-aarch64",
"windows-i686",
"windows-x86_64",
}
end
if _ACTION == "gmake2" then
platforms {
"linux-aarch64",
"linux-i686",
"linux-x86_64",
}
end
if _ACTION == "xcode4" then
platforms {
"mac-aarch64",
"mac-x86_64",
}
end
include "src"
include "examples"