From 671027ef2b74fdd8d5724e065d55a88786f34eeb Mon Sep 17 00:00:00 2001 From: = Date: Wed, 25 Jan 2017 18:49:48 -0500 Subject: [PATCH] Added basic cmakelists.txt --- CMakeLists.txt | 8 ++++++++ 1 file changed, 8 insertions(+) create mode 100644 CMakeLists.txt diff --git a/CMakeLists.txt b/CMakeLists.txt new file mode 100644 index 000000000..777c7bdd2 --- /dev/null +++ b/CMakeLists.txt @@ -0,0 +1,8 @@ +CMAKE_MINIMUM_REQUIRED(VERSION 3.2) +project(imgui) +SET (LIB_TYPE STATIC) + +add_library(imgui ${LIB_TYPE} imgui.cpp imgui_draw.cpp) + +install(TARGETS imgui DESTINATION lib) +install(FILES imgui.h imconfig.h DESTINATION include) \ No newline at end of file