Files
xenia/src/xenia/base/premake5.lua
T
gibbed 5bf0b34445 C++17ification.
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.
2020-04-07 16:09:41 -05:00

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")