We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents b773128 + e97a7e1 commit 2fb47e4Copy full SHA for 2fb47e4
1 file changed
src/Conan.cmake
@@ -40,6 +40,13 @@ macro(run_conan)
40
set(LIST_OF_BUILD_TYPES ${CMAKE_CONFIGURATION_TYPES})
41
endif()
42
43
+ is_verbose(_is_verbose)
44
+ if(NOT ${_is_verbose})
45
+ set(OUTPUT_QUIET "OUTPUT_QUIET")
46
+ else()
47
+ set(OUTPUT_QUIET OFF)
48
+ endif()
49
+
50
foreach(TYPE ${LIST_OF_BUILD_TYPES})
51
message(STATUS "Running Conan for build type '${TYPE}'")
52
@@ -62,7 +69,8 @@ macro(run_conan)
62
69
"CC=${CMAKE_C_COMPILER}"
63
70
"CXX=${CMAKE_CXX_COMPILER}"
64
71
SETTINGS
65
- ${settings})
72
+ ${settings}
73
+ ${OUTPUT_QUIET})
66
74
endforeach()
67
75
68
76
endmacro()
0 commit comments