xenia-canary/src/xenia/premake5.lua

18 lines
323 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({
"xenia-base",
})
defines({
})
includedirs({
project_root.."/third_party/gflags/src",
})
files({"*.h", "*.cc"})