mirror of
https://github.com/Kitware/CMake.git
synced 2026-01-06 05:40:54 -06:00
Each source compilation generates a dependencies file. These dependencies files are consolidated in one file per target. This consolidation is done as part of command 'cmake -E cmake_depends` launched before evaluation of makefile dependency graph. The consolidation uses the same approach as `CMake` dependencies management. Fixes: #21321
20 lines
591 B
CMake
20 lines
591 B
CMake
include(Compiler/GNU)
|
|
__compiler_gnu(OBJCXX)
|
|
|
|
if((NOT DEFINED CMAKE_DEPENDS_USE_COMPILER OR CMAKE_DEPENDS_USE_COMPILER)
|
|
AND CMAKE_GENERATOR MATCHES "Makefiles|WMake"
|
|
AND CMAKE_DEPFILE_FLAGS_OBJCXX)
|
|
# dependencies are computed by the compiler itself
|
|
set(CMAKE_OBJCXX_DEPFILE_FORMAT gcc)
|
|
set(CMAKE_OBJCXX_DEPENDS_USE_COMPILER TRUE)
|
|
endif()
|
|
|
|
|
|
if(NOT CMAKE_OBJCXX_COMPILER_VERSION VERSION_LESS 4.2)
|
|
set(CMAKE_OBJCXX_COMPILE_OPTIONS_VISIBILITY_INLINES_HIDDEN "-fvisibility-inlines-hidden")
|
|
endif()
|
|
|
|
if(NOT CMAKE_OBJCXX_LINK_FLAGS)
|
|
set(CMAKE_OBCXX_LINK_FLAGS "-lstdc++")
|
|
endif()
|