aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAngelo Mantellini <angelo.mantellini@cisco.com>2020-03-05 14:31:09 +0100
committerAngelo Mantellini <angelo.mantellini@cisco.com>2020-03-05 14:31:09 +0100
commit7188795464dd39471d06fc98f29248829f99a4e3 (patch)
tree473639664820f3a2ac92d2704cfe8406a5596d78
parent9842b74d0ee188fe00264d020eee46c68b62a71e (diff)
[CICN-31] correct libdash find_package
Signed-off-by: Angelo Mantellini <angelo.mantellini@cisco.com> Change-Id: I80838c33daeefa4adb0cd9e2c52b6fe56ca7b6ce
-rw-r--r--libdash/CMakeLists.txt4
1 files changed, 2 insertions, 2 deletions
diff --git a/libdash/CMakeLists.txt b/libdash/CMakeLists.txt
index 0e47c993..ded15cfb 100644
--- a/libdash/CMakeLists.txt
+++ b/libdash/CMakeLists.txt
@@ -11,9 +11,9 @@ if(ANDROID_API)
elseif (COMPILE_FOR_IOS)
set(CMAKE_CXX_FLAGS "-std=c++0x -g -DLOG_BUILD")
find_package(LibXml2 REQUIRED)
- find_host_package(OpenSSL REQUIRED)
+ find_package(OpenSSL REQUIRED)
find_package(ZLIB REQUIRED)
- find_host_package(CURL REQUIRED)
+ find_package(CURL REQUIRED)
else ()
set(CMAKE_CXX_FLAGS "-std=c++0x -g -DLOG_BUILD")
find_package(LibXml2 REQUIRED)