We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
see:
cmake-conan/conan.cmake
Line 615 in c782959
if(ARGS_OUTPUT_QUIET) execute_process(COMMAND ${CONAN_CMD} ${install_args} RESULT_VARIABLE return_code OUTPUT_VARIABLE conan_output ERROR_VARIABLE conan_output WORKING_DIRECTORY ${CMAKE_CURRENT_BINARY_DIR}) else() execute_process(COMMAND ${CONAN_CMD} ${install_args} RESULT_VARIABLE return_code WORKING_DIRECTORY ${CMAKE_CURRENT_BINARY_DIR}) endif()
by:
if(ARGS_OUTPUT_QUIET) set(OUTPUT_OPT OUTPUT_QUIET) endif() if(ARGS_ERROR_QUIET) set(ERROR_OPT ERROR_QUIET) endif() execute_process(COMMAND ${CONAN_CMD} ${install_args} RESULT_VARIABLE return_code ${OUTPUT_OPT} ${ERROR_OPT} WORKING_DIRECTORY ${CMAKE_CURRENT_BINARY_DIR})
The text was updated successfully, but these errors were encountered:
Hi @RalfBielig, Thanks a lot for reporting and suggesting the fix, I'll add this for 0.16.1 milestone.
Sorry, something went wrong.
Closed by: #313
Version 0.16.1 released
Successfully merging a pull request may close this issue.
problem:
possible solution:
see:
cmake-conan/conan.cmake
Line 615 in c782959
replace:
by:
The text was updated successfully, but these errors were encountered: