From 4b6b069bf10a3887decde81f117403dab1dd4ef5 Mon Sep 17 00:00:00 2001 From: Gary Talent Date: Sat, 12 Mar 2022 11:59:23 -0600 Subject: [PATCH] [imgui] Add missing CMakeLists.txt --- deps/imgui/CMakeLists.txt | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 deps/imgui/CMakeLists.txt diff --git a/deps/imgui/CMakeLists.txt b/deps/imgui/CMakeLists.txt new file mode 100644 index 000000000..91ccac965 --- /dev/null +++ b/deps/imgui/CMakeLists.txt @@ -0,0 +1,13 @@ + +set(CMAKE_CXX_FLAGS "-Wno-everything") + +add_library( + imgui OBJECT + imgui.cpp + imgui_demo.cpp + imgui_draw.cpp + imgui_tables.cpp + imgui_widgets.cpp + backends/imgui_impl_glfw.cpp + backends/imgui_impl_opengl3.cpp +)