xenia/src/xenia/premake5.lua
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

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