only find cpprestsdk when not set BUILD_ETCD_CORE_ONLY

This commit is contained in:
waruto210 2025-02-01 16:15:44 +08:00
parent 27d96a2947
commit 59c22311f3
1 changed files with 5 additions and 3 deletions

View File

@ -15,10 +15,12 @@ if(NOT gRPC_FOUND)
find_dependency(GRPC)
endif()
find_package(cpprestsdk QUIET)
if (NOT @BUILD_ETCD_CORE_ONLY@)
find_dependency(cpprestsdk)
if(cpprestsdk_FOUND)
set(CPPREST_LIB cpprestsdk::cpprest)
endif()
endif()
set(ETCD_CPP_HOME "${CMAKE_CURRENT_LIST_DIR}/../../..")
include("${CMAKE_CURRENT_LIST_DIR}/etcd-targets.cmake")