diff --git a/conan/tools/cmake/cmakedeps/templates/config.py b/conan/tools/cmake/cmakedeps/templates/config.py index 5892a4160bc..07b44a4a8d7 100644 --- a/conan/tools/cmake/cmakedeps/templates/config.py +++ b/conan/tools/cmake/cmakedeps/templates/config.py @@ -45,6 +45,12 @@ def template(self): message(FATAL_ERROR "The 'CMakeDeps' generator only works with CMake >= 3.15") endif() + if({{ file_name }}_FIND_QUIETLY) + set({{ file_name }}_MESSAGE_MODE VERBOSE) + else() + set({{ file_name }}_MESSAGE_MODE STATUS) + endif() + include(${CMAKE_CURRENT_LIST_DIR}/cmakedeps_macros.cmake) include(${CMAKE_CURRENT_LIST_DIR}/{{ targets_include_file }}) include(CMakeFindDependencyMacro) @@ -66,7 +72,7 @@ def template(self): # Only the first installed configuration is included to avoid the collision foreach(_BUILD_MODULE {{ '${' + pkg_name + '_BUILD_MODULES_PATHS' + config_suffix + '}' }} ) - message(STATUS "Conan: Including build module from '${_BUILD_MODULE}'") + message({% raw %}${{% endraw %}{{ file_name }}_MESSAGE_MODE} "Conan: Including build module from '${_BUILD_MODULE}'") include({{ '${_BUILD_MODULE}' }}) endforeach() @@ -76,7 +82,7 @@ def template(self): if({{ file_name }}_FIND_COMPONENTS) foreach(_FIND_COMPONENT {{ '${'+file_name+'_FIND_COMPONENTS}' }}) if (TARGET ${_FIND_COMPONENT}) - message(STATUS "Conan: Component '${_FIND_COMPONENT}' found in package '{{ pkg_name }}'") + message({% raw %}${{% endraw %}{{ file_name }}_MESSAGE_MODE} "Conan: Component '${_FIND_COMPONENT}' found in package '{{ pkg_name }}'") else() message(FATAL_ERROR "Conan: Component '${_FIND_COMPONENT}' NOT found in package '{{ pkg_name }}'") endif() diff --git a/conan/tools/cmake/cmakedeps/templates/targets.py b/conan/tools/cmake/cmakedeps/templates/targets.py index c3cea116d37..42d8d7f9c66 100644 --- a/conan/tools/cmake/cmakedeps/templates/targets.py +++ b/conan/tools/cmake/cmakedeps/templates/targets.py @@ -66,13 +66,13 @@ def template(self): foreach(_COMPONENT {{ '${' + pkg_name + '_COMPONENT_NAMES' + '}' }} ) if(NOT TARGET ${_COMPONENT}) add_library(${_COMPONENT} INTERFACE IMPORTED) - message(STATUS "Conan: Component target declared '${_COMPONENT}'") + message({% raw %}${{% endraw %}{{ file_name }}_MESSAGE_MODE} "Conan: Component target declared '${_COMPONENT}'") endif() endforeach() if(NOT TARGET {{ root_target_name }}) add_library({{ root_target_name }} INTERFACE IMPORTED) - message(STATUS "Conan: Target declared '{{ root_target_name }}'") + message({% raw %}${{% endraw %}{{ file_name }}_MESSAGE_MODE} "Conan: Target declared '{{ root_target_name }}'") endif() {%- for alias, target in cmake_target_aliases.items() %}