Files
Xenia-Canary/src/xenia/kernel/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

24 lines
407 B
Lua

project_root = "../../.."
include(project_root.."/tools/build")
group("src")
project("xenia-kernel")
uuid("ae185c4a-1c4f-4503-9892-328e549e871a")
kind("StaticLib")
language("C++")
links({
"aes_128",
"fmt",
"xenia-apu",
"xenia-base",
"xenia-cpu",
"xenia-hid",
"xenia-vfs",
})
defines({
})
recursive_platform_files()
files({
"debug_visualizers.natvis",
})