2016-11-02 02:14:24 +08:00
|
|
|
#header-only library
|
2016-11-01 16:32:25 +08:00
|
|
|
include(vcpkg_common_functions)
|
2017-10-24 00:04:00 +08:00
|
|
|
|
|
|
|
vcpkg_from_github(
|
|
|
|
OUT_SOURCE_PATH SOURCE_PATH
|
|
|
|
REPO zeromq/cppzmq
|
|
|
|
REF v4.2.2
|
|
|
|
SHA512 5f61ea4a16987c1363c3029cf46b3e83ddd86d65e8d639b0332d691f8fdb5cee121b5d72a9b8c89221daf52ea5892219e0bc4ea4e761bb1e7deb1659011dd3c9
|
|
|
|
HEAD_REF master
|
2016-11-01 16:32:25 +08:00
|
|
|
)
|
|
|
|
|
|
|
|
# cppzmq is a single header library, so we just need to copy that file in the include directory
|
|
|
|
file(INSTALL ${SOURCE_PATH}/zmq.hpp DESTINATION ${CURRENT_PACKAGES_DIR}/include)
|
2017-04-23 21:23:25 +08:00
|
|
|
file(INSTALL ${SOURCE_PATH}/zmq_addon.hpp DESTINATION ${CURRENT_PACKAGES_DIR}/include)
|
2016-11-01 16:32:25 +08:00
|
|
|
|
|
|
|
# Handle copyright
|
|
|
|
file(COPY ${SOURCE_PATH}/LICENSE DESTINATION ${CURRENT_PACKAGES_DIR}/share/cppzmq)
|
|
|
|
file(RENAME ${CURRENT_PACKAGES_DIR}/share/cppzmq/LICENSE ${CURRENT_PACKAGES_DIR}/share/cppzmq/copyright)
|