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

21
third_party/imgui.lua vendored Normal file
View File

@@ -0,0 +1,21 @@
group("third_party")
project("imgui")
uuid("ed9271c4-b0a1-42ef-8403-067b11bf49d0")
kind("StaticLib")
language("C++")
links({
})
defines({
"_LIB",
})
includedirs({
"imgui",
})
files({
"imgui/imconfig.h",
"imgui/imgui.cpp",
"imgui/imgui.h",
"imgui/stb_rect_pack.h",
"imgui/stb_textedit.h",
"imgui/stb_truetype.h",
})