mirror of
https://github.com/microsoft/vcpkg.git
synced 2024-11-27 07:29:11 +08:00
33 lines
1.1 KiB
CMake
33 lines
1.1 KiB
CMake
|
include(vcpkg_common_functions)
|
||
|
|
||
|
vcpkg_from_github(
|
||
|
OUT_SOURCE_PATH SOURCE_PATH
|
||
|
REPO eProsima/Fast-RTPS
|
||
|
REF b1779b608c7b5b2dcb101728f4213c58bdde74ee # waiting for next release
|
||
|
SHA512 9ec4a1e41296df1c0bc00926d925e0947602fabb68e9b28311e92739b0e1909a2993b15fc05eb31aeb9842ed50127f8d56571d09e57dd64ac6f37d0fed6cea73
|
||
|
HEAD_REF master
|
||
|
)
|
||
|
|
||
|
vcpkg_apply_patches(
|
||
|
SOURCE_PATH ${SOURCE_PATH}
|
||
|
PATCHES ${CMAKE_CURRENT_LIST_DIR}/fix-install.patch
|
||
|
)
|
||
|
|
||
|
vcpkg_configure_cmake(
|
||
|
SOURCE_PATH ${SOURCE_PATH}
|
||
|
PREFER_NINJA
|
||
|
)
|
||
|
|
||
|
vcpkg_install_cmake()
|
||
|
vcpkg_copy_pdbs()
|
||
|
|
||
|
file(MAKE_DIRECTORY ${CURRENT_PACKAGES_DIR}/share)
|
||
|
file(COPY ${CURRENT_PACKAGES_DIR}/lib/fastrtps DESTINATION ${CURRENT_PACKAGES_DIR}/share)
|
||
|
|
||
|
file(REMOVE_RECURSE ${CURRENT_PACKAGES_DIR}/debug/include)
|
||
|
file(REMOVE_RECURSE ${CURRENT_PACKAGES_DIR}/debug/examples)
|
||
|
file(REMOVE_RECURSE ${CURRENT_PACKAGES_DIR}/debug/LICENSE)
|
||
|
file(REMOVE_RECURSE ${CURRENT_PACKAGES_DIR}/examples)
|
||
|
|
||
|
file(RENAME ${CURRENT_PACKAGES_DIR}/LICENSE ${CURRENT_PACKAGES_DIR}/share/fastrtps/copyright)
|