From afe21ba85b68ca06d9b556f5e30042450e1c5967 Mon Sep 17 00:00:00 2001 From: Sylvain Chapeland Date: Wed, 29 Jan 2025 14:38:53 +0100 Subject: [PATCH] version update + log for grpc --- CMakeLists.txt | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 5211679b..c94e3233 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -31,7 +31,7 @@ endif() # Define project project(Monitoring - VERSION 3.18.2 + VERSION 3.19.1 DESCRIPTION "O2 Monitoring library" LANGUAGES CXX ) @@ -91,6 +91,13 @@ else() message("RDKAFKA_ROOT not set, corresponding libs and binaries won't be built") endif() +if(gRPC_FOUND) + message("gRPC found, we enable corresponding libs and binaries") +else() + message("gRPC not found, corresponding libs and binaries won't be built") +endif() + + #################################### # Set OUTPUT vars ####################################