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 +)