https://github.com/Kitware/CMake
Raw File
Tip revision: 64fb825438a2fecb9eab9933d5d1b926bf6f294b authored by Brad King on 24 November 2020, 13:50:26 UTC
CMake 3.19.1
Tip revision: 64fb825
Darwin-Determine-CXX.cmake
if(NOT CMAKE_CXX_COMPILER_NAMES)
  set(CMAKE_CXX_COMPILER_NAMES c++)
endif()

# Exclude C++ compilers differing from C compiler only by case
# because this platform may have a case-insensitive filesystem.
set(CMAKE_CXX_COMPILER_EXCLUDE CC aCC xlC)
back to top