diff options
author | Angelo Mantellini <angelo.mantellini@cisco.com> | 2020-04-23 15:08:44 +0200 |
---|---|---|
committer | Angelo Mantellini <angelo.mantellini@cisco.com> | 2020-04-23 15:13:48 +0200 |
commit | 509e9201fd1918caf8fb08160064e7dbeef24dee (patch) | |
tree | 7bcc2f08e482f48a08e3b1ce4758f7973ad92ffd /apps/CMakeLists.txt | |
parent | 0296cf30d22918bc5c23e02cf2510fa18dec687e (diff) |
[HICN-600] correct hicn apps on windows
Signed-off-by: Angelo Mantellini <angelo.mantellini@cisco.com>
Change-Id: I78656e5b3821024913b01b095e4368f53d02a5d1
Diffstat (limited to 'apps/CMakeLists.txt')
-rw-r--r-- | apps/CMakeLists.txt | 11 |
1 files changed, 7 insertions, 4 deletions
diff --git a/apps/CMakeLists.txt b/apps/CMakeLists.txt index f5075a7aa..5f5604256 100644 --- a/apps/CMakeLists.txt +++ b/apps/CMakeLists.txt @@ -32,9 +32,11 @@ if(CMAKE_SOURCE_DIR STREQUAL PROJECT_SOURCE_DIR) find_package(Threads REQUIRED) include_directories(${LIBTRANSPORT_INCLUDE_DIRS}) else() - if (${CMAKE_SYSTEM_NAME} STREQUAL "Android") + if (DISABLE_SHARED_LIBRARIES) find_package(OpenSSL REQUIRED) - find_package(ZLIB REQUIRED) + if (NOT WIN32) + find_package(ZLIB REQUIRED) + endif () set(LIBTRANSPORT_LIBRARIES ${LIBTRANSPORT_STATIC}) else () set(LIBTRANSPORT_LIBRARIES ${LIBTRANSPORT_SHARED}) @@ -68,6 +70,7 @@ include(Packaging) set(HIGET higet) set(HTTP_PROXY hicn-http-proxy) - -add_subdirectory(http-proxy) +if (NOT WIN32) + add_subdirectory(http-proxy) +endif () add_subdirectory(higet) |