We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e73bfd0 commit 77861cdCopy full SHA for 77861cd
1 file changed
src/Conan.cmake
@@ -32,6 +32,11 @@ macro(run_conan)
32
set(LIST_OF_BUILD_TYPES ${CMAKE_CONFIGURATION_TYPES})
33
endif()
34
35
+ is_verbose(_is_verbose)
36
+ if(NOT ${_is_verbose})
37
+ set(CONAN_QUIET YES)
38
+ endif()
39
+
40
foreach(TYPE ${LIST_OF_BUILD_TYPES})
41
message(STATUS "Running Conan for build type '${TYPE}'")
42
@@ -48,7 +53,7 @@ macro(run_conan)
48
53
OPTIONS ${ProjectOptions_CONAN_OPTIONS}
49
54
# Pass CMake compilers to Conan
50
55
ENV "CC=${CMAKE_C_COMPILER}" "CXX=${CMAKE_CXX_COMPILER}"
51
- SETTINGS ${settings})
56
+ SETTINGS ${settings} OUTPUT_QUIET ${CONAN_QUIET})
52
57
endforeach()
58
59
endmacro()
0 commit comments