mirror of
https://github.com/reactos/CMake.git
synced 2024-12-05 02:06:34 +00:00
e95b3fd9bb
Apple platforms macOS, iOS, tvOS, and watchOS can all share the same compiler information. Rename `Darwin-*` modules to `Apple-*` and load them all through `CMAKE_EFFECTIVE_SYSTEM_NAME`. This saves duplication of 4 * 21 compiler information modules. Issue: #17870
7 lines
210 B
CMake
7 lines
210 B
CMake
include(Platform/Apple-Clang-CXX)
|
|
if(NOT CMAKE_CXX_COMPILER_VERSION VERSION_LESS 4.2)
|
|
set(CMAKE_CXX_SYSTEM_FRAMEWORK_SEARCH_FLAG "-iframework ")
|
|
else()
|
|
unset(CMAKE_CXX_SYSTEM_FRAMEWORK_SEARCH_FLAG)
|
|
endif()
|