From 0b1858cc42d47d378c098d1df1e35d6ab2b2736f 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: 2c2cb7aa34879d05aaa99c241937cb218a11e44b --- 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 a4f97269..867e0aa2 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() -- GitLab