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

17
third_party/xxhash.lua vendored Normal file
View File

@@ -0,0 +1,17 @@
group("third_party")
project("xxhash")
uuid("40d4ce21-5448-4399-9f98-589b7e1c23b1")
kind("StaticLib")
language("C++")
links({
})
defines({
"_LIB",
})
includedirs({
"xxhash",
})
files({
"xxhash/xxhash.c",
"xxhash/xxhash.h",
})