Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/prusa3d/PrusaSlicer.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorEnrico Turri <enricoturri@seznam.cz>2018-10-31 11:57:29 +0300
committerVojtech Kral <vojtech@kral.hk>2018-11-26 12:56:41 +0300
commit5c054d11caa202561e1fada2b98ae082c51f7204 (patch)
tree0ffb62d29e3a23229425a85dc4e922fc8899672c /src/imgui/CMakeLists.txt
parentb94f19eaf46c334eeca34eb1378fb30ac6dfb4e7 (diff)
Added imgui library
Diffstat (limited to 'src/imgui/CMakeLists.txt')
-rw-r--r--src/imgui/CMakeLists.txt15
1 files changed, 15 insertions, 0 deletions
diff --git a/src/imgui/CMakeLists.txt b/src/imgui/CMakeLists.txt
new file mode 100644
index 000000000..b0c35c29d
--- /dev/null
+++ b/src/imgui/CMakeLists.txt
@@ -0,0 +1,15 @@
+project(imgui)
+cmake_minimum_required(VERSION 2.6)
+
+add_library(imgui STATIC
+ imconfig.h
+ imgui.h
+ imgui_internal.h
+ imstb_rectpack.h
+ imstb_textedit.h
+ imstb_truetype.h
+ imgui.cpp
+ imgui_demo.cpp
+ imgui_draw.cpp
+ imgui_widgets.cpp
+)