Switching to premake. Probably with disasterous consequences.

This commit is contained in:
Ben Vanik
2015-07-18 16:00:01 -07:00
parent 6c5d230f67
commit e0eb85bbbc
208 changed files with 1112 additions and 4162 deletions

18
src/xenia/premake5.lua Normal file
View File

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