aboutsummaryrefslogtreecommitdiff
path: root/vcpkg/ports/magnum/003-fix-FindGLFW.patch
blob: a6b9cdfb740e9f28c71a8f6584d40366ddf8d160 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
diff --git a/modules/FindMagnum.cmake b/modules/FindMagnum.cmake
index 8761448..17321af 100644
--- a/modules/FindMagnum.cmake
+++ b/modules/FindMagnum.cmake
@@ -647,9 +647,9 @@ foreach(_component ${Magnum_FIND_COMPONENTS})
 
             # GLFW application dependencies
             elseif(_component STREQUAL GlfwApplication)
-                find_package(GLFW)
+                find_package(glfw3 CONFIG REQUIRED)
                 set_property(TARGET Magnum::${_component} APPEND PROPERTY
-                    INTERFACE_LINK_LIBRARIES GLFW::GLFW)
+                    INTERFACE_LINK_LIBRARIES glfw)
                 # Use the Foundation framework on Apple to query the DPI awareness
                 if(CORRADE_TARGET_APPLE)
                     find_library(_MAGNUM_APPLE_FOUNDATION_FRAMEWORK_LIBRARY Foundation)