From 9d8818eee53287689dd01cfba42f1c4ea5faf278 Mon Sep 17 00:00:00 2001 From: Stephen Birarda Date: Fri, 8 Aug 2014 13:18:32 -0700 Subject: [PATCH] remove OpenSSL requirement from octree library --- libraries/octree/CMakeLists.txt | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/libraries/octree/CMakeLists.txt b/libraries/octree/CMakeLists.txt index da641d1524..c302a082be 100644 --- a/libraries/octree/CMakeLists.txt +++ b/libraries/octree/CMakeLists.txt @@ -7,15 +7,13 @@ include_glm() link_hifi_libraries(shared networking) -# find ZLIB and OpenSSL +# find ZLIB find_package(ZLIB REQUIRED) -find_package(OpenSSL REQUIRED) -include_directories(SYSTEM "${ZLIB_INCLUDE_DIRS}" "${OPENSSL_INCLUDE_DIR}") +include_directories(SYSTEM "${ZLIB_INCLUDE_DIRS}") # append ZLIB and OpenSSL to our list of libraries to link list(APPEND ${TARGET_NAME}_LIBRARIES_TO_LINK "${ZLIB_LIBRARIES}") -list(APPEND ${TARGET_NAME}_LIBRARIES_TO_LINK "${OPENSSL_LIBRARIES}") # call macro to link our dependencies and bubble them up via a property on our target link_shared_dependencies() \ No newline at end of file