mirror of
https://github.com/xenia-project/xenia.git
synced 2025-04-02 11:02:16 -04:00
- Update premake (for VS2019 support). - Update Xenia build script to detect VS2017+ version. - Update Xenia premake scripts due to updated premake. - Fix cc override in Xenia build script.
14 lines
422 B
Lua
14 lines
422 B
Lua
build_root = "build"
|
|
build_bin = build_root .. "/bin/%{cfg.platform}/%{cfg.buildcfg}"
|
|
build_gen = build_root .. "/gen/%{cfg.platform}/%{cfg.buildcfg}"
|
|
build_obj = build_root .. "/obj/%{cfg.platform}/%{cfg.buildcfg}"
|
|
|
|
build_tools = "tools/build"
|
|
build_scripts = build_tools .. "/scripts"
|
|
build_tools_src = build_tools .. "/src"
|
|
|
|
if os.istarget("windows") then
|
|
platform_suffix = "win"
|
|
else
|
|
platform_suffix = "posix"
|
|
end
|