From 20528fcb9a3ef9dfb854cdd333ef96c867bac292 Mon Sep 17 00:00:00 2001 From: quicksilver Date: Fri, 2 Aug 2019 11:04:09 +0800 Subject: [PATCH] fix snappy include directory bug Former-commit-id: eddadb646fb65f0d79b51c832375a1cdfe7870d4 --- cpp/cmake/ThirdPartyPackages.cmake | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cpp/cmake/ThirdPartyPackages.cmake b/cpp/cmake/ThirdPartyPackages.cmake index a4f97269c5..867e0aa2c5 100644 --- a/cpp/cmake/ThirdPartyPackages.cmake +++ b/cpp/cmake/ThirdPartyPackages.cmake @@ -1612,7 +1612,7 @@ macro(build_snappy) set_target_properties(snappy PROPERTIES IMPORTED_LOCATION "${SNAPPY_STATIC_LIB}" INTERFACE_INCLUDE_DIRECTORIES - "${SNAPPY_INCLUDE_DIRS}") + "${SNAPPY_INCLUDE_DIR}") add_dependencies(snappy snappy_ep) endmacro()