first commit

This commit is contained in:
Irlan Robson
2016-12-18 18:39:47 -02:00
commit 8f29bc7e21
232 changed files with 103257 additions and 0 deletions

18
external/imgui/CMakeLists.txt vendored Normal file
View File

@ -0,0 +1,18 @@
set(imgui_HEADERS
imconfig.h
imgui.h
imgui_internal.h
imgui_impl_glfw_gl3.h
stb_rect_pack.h
stb_textedit.h
stb_truetype.h
)
set(imgui_SOURCES
imgui.cpp
imgui_draw.cpp
imgui_impl_glfw_gl3.cpp
)
include_directories(../)
add_library(imgui STATIC ${imgui_HEADERS} ${imgui_SOURCES})