Cocoa: Stop searching for system frameworks

master
Camilla Berglund ago%!(EXTRA string=9 years)
parent fef25ea934
commit 017162e3fd
  1. 18
      CMakeLists.txt

@ -323,19 +323,11 @@ if (_GLFW_COCOA)
set(_GLFW_USE_RETINA 1) set(_GLFW_USE_RETINA 1)
endif() endif()
# Set up library and include paths list(APPEND glfw_LIBRARIES
find_library(COCOA_FRAMEWORK Cocoa) "-framework Cocoa"
find_library(IOKIT_FRAMEWORK IOKit) "-framework IOKit"
find_library(CORE_FOUNDATION_FRAMEWORK CoreFoundation) "-framework CoreFoundation"
find_library(CORE_VIDEO_FRAMEWORK CoreVideo) "-framework CoreVideo")
mark_as_advanced(COCOA_FRAMEWORK
IOKIT_FRAMEWORK
CORE_FOUNDATION_FRAMEWORK
CORE_VIDEO_FRAMEWORK)
list(APPEND glfw_LIBRARIES "${COCOA_FRAMEWORK}"
"${IOKIT_FRAMEWORK}"
"${CORE_FOUNDATION_FRAMEWORK}"
"${CORE_VIDEO_FRAMEWORK}")
set(glfw_PKG_DEPS "") set(glfw_PKG_DEPS "")
set(glfw_PKG_LIBS "-framework Cocoa -framework IOKit -framework CoreFoundation -framework CoreVideo") set(glfw_PKG_LIBS "-framework Cocoa -framework IOKit -framework CoreFoundation -framework CoreVideo")

Loading…
Cancel
Save