From e1c3690a2a3a329536a7a8cb148758dc1846c0b5 Mon Sep 17 00:00:00 2001 From: DoppelDe Date: Mon, 20 Nov 2023 19:35:56 +0100 Subject: [PATCH] Fix typo in CMakeLists.txt (#8167) When building with make, it was failing for me because the target grpctext doesn't exist. I strongly assume this was meant to be grpctest. Co-authored-by: Derek Bailey --- CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index fd4418b77..ab699559a 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -598,7 +598,7 @@ if(FLATBUFFERS_BUILD_GRPCTEST) find_package(protobuf CONFIG REQUIRED) find_package(gRPC CONFIG REQUIRED) add_executable(grpctest ${FlatBuffers_GRPCTest_SRCS}) - target_link_libraries(grpctext + target_link_libraries(grpctest PRIVATE $ gRPC::grpc++_unsecure