mirror of
https://github.com/Kitware/CMake.git
synced 2026-01-04 04:40:56 -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
12 lines
345 B
CMake
12 lines
345 B
CMake
include(Compiler/GNU)
|
|
__compiler_gnu(OBJC)
|
|
|
|
|
|
if((NOT DEFINED CMAKE_DEPENDS_USE_COMPILER OR CMAKE_DEPENDS_USE_COMPILER)
|
|
AND CMAKE_GENERATOR MATCHES "Makefiles|WMake"
|
|
AND CMAKE_DEPFILE_FLAGS_OBJC)
|
|
# dependencies are computed by the compiler itself
|
|
set(CMAKE_OBJC_DEPFILE_FORMAT gcc)
|
|
set(CMAKE_OBJC_DEPENDS_USE_COMPILER TRUE)
|
|
endif()
|