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

20
third_party/beaengine.lua vendored Normal file
View File

@@ -0,0 +1,20 @@
group("third_party")
project("beaengine")
uuid("56e7d457-9955-4217-aadf-52e5ab45afab")
kind("StaticLib")
language("C++")
links({
})
defines({
"BEA_ENGINE_STATIC=1",
"_LIB",
})
includedirs({
"beaengine/include",
"beaengine/beaengineSources",
})
files({
"beaengine/beaengineSources/*.h",
"beaengine/beaengineSources/*.c",
"beaengine/include/beaengine/**.h",
})