mirror of
https://gitlab.kitware.com/cmake/cmake.git
synced 2026-01-29 20:34:20 +00:00
Skip the `CMAKE_OSX_ARCHITECTURES` validation added by commit db409e5e68 (APPLE: Check if compilers respect CMAKE_OSX_ARCHITECTURES, 2024-05-04, v3.30.0-rc1~15^2) if the value contains a placeholder, since we do not know the real value. Fixes: #26128
5 lines
162 B
CMake
5 lines
162 B
CMake
if(NOT CMAKE_OSX_ARCHITECTURES STREQUAL "$(ARCHS_STANDARD)")
|
|
message(FATAL_ERROR "CMAKE_OSX_ARCHITECTURES is not $(ARCHS_STANDARD)")
|
|
endif()
|
|
enable_language(C)
|