diff --git a/CMakeLists.txt b/CMakeLists.txt index c37f019..a724f2c 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -29,7 +29,7 @@ endif() find_package(OpenSSL REQUIRED) find_package(Protobuf REQUIRED) -find_package(cpprestsdk) +find_package(cpprestsdk QUIET) if(cpprestsdk_FOUND) set(CPPREST_INCLUDE_DIR) else() @@ -37,7 +37,7 @@ else() find_path(CPPREST_INCLUDE_DIR NAMES cpprest/http_client.h) endif() -find_package(gRPC) +find_package(gRPC QUIET) if(gRPC_FOUND) set(GRPC_LIBRARIES gRPC::gpr gRPC::grpc gRPC::grpc++) get_target_property(GRPC_CPP_PLUGIN gRPC::grpc_cpp_plugin LOCATION)