From e4795781c325048df35bf8e75d7f66bfc803f34e Mon Sep 17 00:00:00 2001
From: Joscha Schmiedt <joscha@schmiedt.dev>
Date: Wed, 21 Aug 2024 22:23:21 +0200
Subject: [PATCH] Remove GRPC_GENERATED from ccaosdb

Linking against caosdb should achieve the same.
---
 CMakeLists.txt | 5 +----
 1 file changed, 1 insertion(+), 4 deletions(-)

diff --git a/CMakeLists.txt b/CMakeLists.txt
index 6567d8e..0104e4f 100644
--- a/CMakeLists.txt
+++ b/CMakeLists.txt
@@ -178,12 +178,9 @@ target_include_directories(caosdb PUBLIC
     $<INSTALL_INTERFACE:include>
 )
 
-
-
-
 # libccaosdb
 # ----------
-add_library(ccaosdb SHARED src/ccaosdb.cpp ${GRPC_GENERATED})
+add_library(ccaosdb SHARED src/ccaosdb.cpp)
 target_link_libraries(ccaosdb
     gRPC::grpc gRPC::grpc++ protobuf::libprotobuf ${Boost_LIBRARIES}
     ${LIBCAOSDB}
-- 
GitLab