We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 77861cd commit 2412f6bCopy full SHA for 2412f6b
1 file changed
src/Conan.cmake
@@ -34,7 +34,9 @@ macro(run_conan)
34
35
is_verbose(_is_verbose)
36
if(NOT ${_is_verbose})
37
- set(CONAN_QUIET YES)
+ set(OUTPUT_QUIET "OUTPUT_QUIET")
38
+ else()
39
+ set(OUTPUT_QUIET OFF)
40
endif()
41
42
foreach(TYPE ${LIST_OF_BUILD_TYPES})
@@ -53,7 +55,7 @@ macro(run_conan)
53
55
OPTIONS ${ProjectOptions_CONAN_OPTIONS}
54
56
# Pass CMake compilers to Conan
57
ENV "CC=${CMAKE_C_COMPILER}" "CXX=${CMAKE_CXX_COMPILER}"
- SETTINGS ${settings} OUTPUT_QUIET ${CONAN_QUIET})
58
+ SETTINGS ${settings} ${OUTPUT_QUIET})
59
endforeach()
60
61
endmacro()
0 commit comments