mirror of
https://github.com/xenia-project/xenia.git
synced 2026-03-21 04:36:05 +01:00
C++17ification! - Filesystem interaction now uses std::filesystem::path. - Usage of const char*, std::string have been changed to std::string_view where appropriate. - Usage of printf-style functions changed to use fmt.
16 lines
268 B
Lua
16 lines
268 B
Lua
project_root = "../.."
|
|
include(project_root.."/tools/build")
|
|
|
|
group("src")
|
|
project("xenia-core")
|
|
uuid("970f7892-f19a-4bf5-8795-478c51757bec")
|
|
kind("StaticLib")
|
|
language("C++")
|
|
links({
|
|
"fmt",
|
|
"xenia-base",
|
|
})
|
|
defines({
|
|
})
|
|
files({"*.h", "*.cc"})
|