mirror of
https://github.com/xenia-project/xenia.git
synced 2026-07-11 01:24:34 +02:00
5bf0b34445
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.
20 lines
335 B
Lua
20 lines
335 B
Lua
project_root = "../../.."
|
|
include(project_root.."/tools/build")
|
|
|
|
project("xenia-base")
|
|
uuid("aeadaf22-2b20-4941-b05f-a802d5679c11")
|
|
kind("StaticLib")
|
|
language("C++")
|
|
links({
|
|
"fmt"
|
|
})
|
|
defines({
|
|
})
|
|
local_platform_files()
|
|
removefiles({"main_*.cc"})
|
|
files({
|
|
"debug_visualizers.natvis",
|
|
})
|
|
|
|
include("testing")
|