From d294bbde8572c32b898a20faa49eb5f2bdfdfa1d Mon Sep 17 00:00:00 2001 From: Gary Talent Date: Fri, 11 Mar 2022 22:43:06 -0600 Subject: [PATCH] [imgui] Remove conan dest imgui dir --- deps/imgui/CMakeLists.txt | 34 ---------------------------------- 1 file changed, 34 deletions(-) delete mode 100644 deps/imgui/CMakeLists.txt diff --git a/deps/imgui/CMakeLists.txt b/deps/imgui/CMakeLists.txt deleted file mode 100644 index e70e0b5a6..000000000 --- a/deps/imgui/CMakeLists.txt +++ /dev/null @@ -1,34 +0,0 @@ -add_library( - imgui-glfw OBJECT - src/imgui_impl_glfw.cpp - src/imgui_impl_opengl3.cpp -) - -find_package(glfw3 REQUIRED) -find_package(imgui REQUIRED) - -target_link_libraries( - imgui-glfw PUBLIC - ${OPENGL_gl_LIBRARY} - glfw::glfw - imgui::imgui -) - -if(NOT MSVC) - target_compile_options( - imgui-glfw PRIVATE - -Wno-all - -Wno-extra - -Wno-old-style-cast - -Wno-deprecated-declarations - -Wno-null-dereference - ) -endif() - -install( - TARGETS - imgui-glfw - DESTINATION - LIBRARY DESTINATION lib/nostalgia - ARCHIVE DESTINATION lib/nostalgia -)