Files
Xenia-Canary/src/xenia/premake5.lua
Ben Vanik 0e58208add Dropping elemental-forms and swapping out with imgui.
Too much code for such little use. This should simplify porting.
2015-12-26 20:25:24 -08:00

18 lines
335 B
Lua

project_root = "../.."
include(project_root.."/build_tools")
group("src")
project("xenia-core")
uuid("970f7892-f19a-4bf5-8795-478c51757bec")
kind("StaticLib")
language("C++")
links({
"xenia-base",
})
defines({
})
includedirs({
project_root.."/build_tools/third_party/gflags/src",
})
files({"*.h", "*.cc"})