mirror of
https://github.com/microsoft/vcpkg.git
synced 2024-11-25 04:02:15 +08:00
44 lines
1.1 KiB
CMake
44 lines
1.1 KiB
CMake
|
include(vcpkg_common_functions)
|
||
|
|
||
|
vcpkg_check_linkage(ONLY_STATIC_LIBRARY)
|
||
|
|
||
|
vcpkg_download_distfile(ARCHIVE
|
||
|
URLS "https://archive.apache.org/dist/zookeeper/zookeeper-3.5.5/apache-zookeeper-3.5.5.tar.gz"
|
||
|
FILENAME "zookeeper-3.5.5.tar.gz"
|
||
|
SHA512 4e22df899a83ca3cc15f6d94daadb1a8631fb4108e67b4f56d1f4fcf95f10f89c8ff1fb8a7c84799a3856d8803a8db1e1f2f3fe1b7dc0d6cedf485ef90fd212d
|
||
|
)
|
||
|
|
||
|
vcpkg_extract_source_archive_ex(
|
||
|
OUT_SOURCE_PATH SOURCE_PATH
|
||
|
ARCHIVE ${ARCHIVE}
|
||
|
PATCHES
|
||
|
cmake.patch
|
||
|
win32.patch
|
||
|
)
|
||
|
|
||
|
set(SOURCE_PATH ${SOURCE_PATH}/zookeeper-client/zookeeper-client-c)
|
||
|
|
||
|
set(WANT_SYNCAPI OFF)
|
||
|
if("sync" IN_LIST FEATURES)
|
||
|
set(WANT_SYNCAPI ON)
|
||
|
endif()
|
||
|
|
||
|
vcpkg_configure_cmake(
|
||
|
SOURCE_PATH ${SOURCE_PATH}
|
||
|
DISABLE_PARALLEL_CONFIGURE
|
||
|
PREFER_NINJA
|
||
|
OPTIONS
|
||
|
-DWANT_CPPUNIT=OFF
|
||
|
-DWANT_SYNCAPI=${WANT_SYNCAPI}
|
||
|
)
|
||
|
|
||
|
vcpkg_install_cmake()
|
||
|
|
||
|
file(INSTALL ${SOURCE_PATH}/LICENSE DESTINATION ${CURRENT_PACKAGES_DIR}/share/zookeeper RENAME copyright)
|
||
|
|
||
|
file(REMOVE_RECURSE ${CURRENT_PACKAGES_DIR}/debug/include)
|
||
|
|
||
|
vcpkg_fixup_cmake_targets()
|
||
|
|
||
|
vcpkg_copy_pdbs()
|