From 1acc02738046003ec76f2646e8f40b64cca97edb Mon Sep 17 00:00:00 2001 From: Justin Scofield <47263509+scawful@users.noreply.github.com> Date: Sun, 11 Sep 2022 00:30:08 -0500 Subject: [PATCH] update CMakeLists.txt --- CMakeLists.txt | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/CMakeLists.txt b/CMakeLists.txt index 60a96e32..a3001a87 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -42,6 +42,10 @@ set( find_package(PNG REQUIRED) find_package(OpenGL REQUIRED) find_package(GLEW REQUIRED) +find_package(gRPC REQUIRED) +set(PROTOBUF_INCLUDE_PATH ${CMAKE_CURRENT_BINARY_DIR} + CACHE INTERNAL "Path to generated protobuf files.") +include_directories(${PROTOBUF_INCLUDE_PATH}) # Project Files add_subdirectory(src/lib/abseil-cpp)