We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 421eaec commit fe2f67bCopy full SHA for fe2f67b
CMakeLists.txt
@@ -60,6 +60,11 @@ if(ENABLE_COVERAGE)
60
include(cmake/coverage.cmake)
61
endif()
62
63
+if(APPLE AND CMAKE_OSX_DEPLOYMENT_TARGET AND
64
+ CMAKE_OSX_DEPLOYMENT_TARGET VERSION_LESS 10.15)
65
+ message(FATAL_ERROR "OpenVINO requires MACOSX_DEPLOYMENT_TARGET at least 10.15, specified ${CMAKE_OSX_DEPLOYMENT_TARGET}")
66
+endif()
67
+
68
# resolving dependencies for the project
69
message (STATUS "CMAKE_VERSION ......................... " ${CMAKE_VERSION})
70
message (STATUS "CMAKE_CROSSCOMPILING .................. " ${CMAKE_CROSSCOMPILING})
0 commit comments