From 86231d0154d2d4c692e83a5b7ce4474313598b0e Mon Sep 17 00:00:00 2001 From: WerWolv Date: Thu, 21 Dec 2023 13:57:25 +0100 Subject: [PATCH] build: Release build on Windows trying to link to `glfw3dll` for some reason --- lib/third_party/imgui/custom/CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/third_party/imgui/custom/CMakeLists.txt b/lib/third_party/imgui/custom/CMakeLists.txt index 95bb3d4ee..7ce9b690b 100644 --- a/lib/third_party/imgui/custom/CMakeLists.txt +++ b/lib/third_party/imgui/custom/CMakeLists.txt @@ -23,4 +23,4 @@ pkg_search_module(GLFW REQUIRED glfw3) target_include_directories(imgui_custom PUBLIC ${FREETYPE_INCLUDE_DIRS} ${GLFW_INCLUDE_DIRS} ${OpenGL_INCLUDE_DIRS}) target_link_directories(imgui_custom PUBLIC ${FREETYPE_LIBRARY_DIRS} ${GLFW_LIBRARY_DIRS} ${OpenGL_LIBRARY_DIRS}) -target_link_libraries(imgui_custom PUBLIC ${GLFW_LIBRARIES} ${OPENGL_LIBRARIES}) \ No newline at end of file +target_link_libraries(imgui_custom PUBLIC glfw3 ${OPENGL_LIBRARIES}) \ No newline at end of file