mirror of
https://github.com/reactos/CMake.git
synced 2024-12-05 10:16:50 +00:00
f6c2189495
Rename Modules/Platform/<os>-<lang>.cmake files to Modules/Platform/<os>-Determine-<lang>.cmake to clarify their role. For compatibility with user-provided modules, load the old names if they exist.
8 lines
248 B
CMake
8 lines
248 B
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)
|