Add CMake options for metal support

metal support is fully optional now

updated README with changelog
This commit is contained in:
secrart 2022-06-13 23:12:17 -04:00
parent 389affc86b
commit 2771b709ea
2 changed files with 11 additions and 0 deletions

View File

@ -121,6 +121,8 @@ information on what to include when reporting a bug.
## Changelog
- Added `GLFW_USE_METALKIT` to cmake build options to make metal support optional
- [Cocoa] Added `glfwResetCocoaMTKFramesize` function for metal view resizing
- [Cocoa] Added `glfwAddCocoaMTKSubview` function for better metal support
- Added `GLFW_PLATFORM` init hint for runtime platform selection (#1958)
- Added `GLFW_ANY_PLATFORM`, `GLFW_PLATFORM_WIN32`, `GLFW_PLATFORM_COCOA`,

View File

@ -164,6 +164,15 @@ if (GLFW_BUILD_COCOA)
"-framework IOKit"
"-framework CoreFoundation")
if(GLFW_USE_METALKIT)
target_link_libraries(glfw PRIVATE "-framework Metal"
"-framework MetalKit")
endif()
set(glfw_PKG_DEPS "")
set(glfw_PKG_LIBS "-framework Cocoa -framework IOKit -framework CoreFoundation")
endif()