We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3cee939 commit 8199563Copy full SHA for 8199563
proj/cmake/platform_macosx.cmake
@@ -7,6 +7,11 @@ if( NOT CMAKE_OSX_ARCHITECTURES )
7
set( CMAKE_OSX_ARCHITECTURES "arm64;x86_64" CACHE STRING "macOS architectures" FORCE )
8
endif()
9
10
+# Set minimum deployment target to macOS 10.13
11
+if( NOT CMAKE_OSX_DEPLOYMENT_TARGET )
12
+ set( CMAKE_OSX_DEPLOYMENT_TARGET "10.13" CACHE STRING "macOS minimum deployment target" FORCE )
13
+endif()
14
+
15
# append mac specific source files
16
list( APPEND SRC_SET_COCOA
17
${CINDER_SRC_DIR}/cinder/CaptureImplAvFoundation.mm
0 commit comments