vcpkg/ports/rest-rpc/portfile.cmake

28 lines
1.0 KiB
CMake
Raw Normal View History

if (EXISTS ${CURRENT_INSTALLED_DIR}/include/msgpack/pack.h)
message(FATAL_ERROR "Cannot install ${PORT} when msgpack is already installed, please remove msgpack using \"./vcpkg remove msgpack:${TARGET_TRIPLET}\"")
endif()
2020-09-01 00:25:21 +08:00
# header-only library
2020-09-01 00:25:21 +08:00
vcpkg_from_github(
OUT_SOURCE_PATH SOURCE_PATH
REPO qicosmos/rest_rpc
REF "v${VERSION}"
SHA512 1d88085acc6c4f913901631725acd08a688a079878677d064d441c3c89167275c5eed371d24e370feb88879ac06270e9316b91c67ea41e350523fe670406ecc1
2020-09-01 00:25:21 +08:00
HEAD_REF master
)
file(INSTALL ${SOURCE_PATH}/include/ DESTINATION ${CURRENT_PACKAGES_DIR}/include)
file(INSTALL ${SOURCE_PATH}/thirdparty/msgpack-c/include/ DESTINATION ${CURRENT_PACKAGES_DIR}/include)
2020-09-01 00:25:21 +08:00
vcpkg_replace_string(
"${CURRENT_PACKAGES_DIR}/include/rest_rpc.hpp"
"#include \"rest_rpc/rpc_server.h\""
"#define ASIO_STANDALONE\n#include \"rest_rpc/rpc_server.h\""
)
file(INSTALL "${CMAKE_CURRENT_LIST_DIR}/usage" DESTINATION "${CURRENT_PACKAGES_DIR}/share/${PORT}")
2020-09-01 00:25:21 +08:00
# # Handle copyright
vcpkg_install_copyright(FILE_LIST "${SOURCE_PATH}/LICENSE")