2018-10-12 13:03:05 +08:00
|
|
|
include(vcpkg_common_functions)
|
|
|
|
|
|
|
|
vcpkg_check_linkage(ONLY_STATIC_LIBRARY)
|
|
|
|
|
|
|
|
vcpkg_from_github(
|
|
|
|
OUT_SOURCE_PATH SOURCE_PATH
|
|
|
|
REPO facebookincubator/fizz
|
2019-05-17 09:33:32 +08:00
|
|
|
REF v2019.04.15.00
|
|
|
|
SHA512 41962aa2276fddf9076ed3070540ab4e5c3e5eed7617a777aef73826015743d02f6b167427242a37f21c7adc37d3f574a033577d4663ff7284e6eff4632ace45
|
2018-10-12 13:03:05 +08:00
|
|
|
HEAD_REF master
|
2019-05-17 09:33:32 +08:00
|
|
|
PATCHES find-zlib.patch
|
2018-10-12 13:03:05 +08:00
|
|
|
)
|
|
|
|
|
|
|
|
# Prefer installed config files
|
|
|
|
file(REMOVE
|
|
|
|
${SOURCE_PATH}/fizz/cmake/FindGflags.cmake
|
|
|
|
${SOURCE_PATH}/fizz/cmake/FindLibevent.cmake
|
|
|
|
${SOURCE_PATH}/fizz/cmake/FindGlog.cmake
|
|
|
|
)
|
|
|
|
|
|
|
|
vcpkg_configure_cmake(
|
|
|
|
SOURCE_PATH "${SOURCE_PATH}/fizz"
|
|
|
|
PREFER_NINJA
|
|
|
|
OPTIONS
|
|
|
|
-DBUILD_TESTS=OFF
|
2019-05-17 09:33:32 +08:00
|
|
|
-DBUILD_EXAMPLES=OFF
|
2018-10-12 13:03:05 +08:00
|
|
|
-DINCLUDE_INSTALL_DIR:STRING=include
|
|
|
|
)
|
|
|
|
|
|
|
|
vcpkg_install_cmake()
|
|
|
|
vcpkg_fixup_cmake_targets(CONFIG_PATH "lib/cmake/fizz")
|
|
|
|
vcpkg_copy_pdbs()
|
|
|
|
|
|
|
|
file(READ ${CURRENT_PACKAGES_DIR}/share/fizz/fizz-config.cmake _contents)
|
|
|
|
string(REPLACE "lib/cmake/fizz" "share/fizz" _contents "${_contents}")
|
2019-05-17 09:33:32 +08:00
|
|
|
file(WRITE ${CURRENT_PACKAGES_DIR}/share/fizz/fizz-config.cmake
|
|
|
|
"include(CMakeFindDependencyMacro)
|
|
|
|
find_dependency(folly CONFIG)
|
|
|
|
find_dependency(ZLIB)
|
|
|
|
${_contents}")
|
2018-10-12 13:03:05 +08:00
|
|
|
|
|
|
|
file(REMOVE_RECURSE
|
|
|
|
${CURRENT_PACKAGES_DIR}/debug/include
|
|
|
|
)
|
|
|
|
|
|
|
|
# Handle copyright
|
|
|
|
file(INSTALL ${SOURCE_PATH}/LICENSE DESTINATION ${CURRENT_PACKAGES_DIR}/share/fizz RENAME copyright)
|