2018-03-10 18:59:43 +08:00
|
|
|
vcpkg_from_github(
|
|
|
|
OUT_SOURCE_PATH SOURCE_PATH
|
|
|
|
REPO eProsima/Fast-CDR
|
2024-06-19 02:59:11 +08:00
|
|
|
REF "v${VERSION}"
|
2024-10-04 23:40:20 +08:00
|
|
|
SHA512 cf664c036e673f6eb2f11fb949b89f85cef830bae46116df1826f14d1985a856a46f0c5986657ea4d90feb488c94032038e294f368b9e5a31b0ed0d2043c2071
|
2018-03-10 18:59:43 +08:00
|
|
|
HEAD_REF master
|
2022-12-13 08:00:12 +08:00
|
|
|
PATCHES
|
|
|
|
pdb-file.patch
|
2018-03-10 18:59:43 +08:00
|
|
|
)
|
|
|
|
|
2022-12-13 08:00:12 +08:00
|
|
|
vcpkg_cmake_configure(
|
|
|
|
SOURCE_PATH ${SOURCE_PATH})
|
2018-03-10 18:59:43 +08:00
|
|
|
|
2022-12-13 08:00:12 +08:00
|
|
|
vcpkg_cmake_install()
|
2018-03-10 18:59:43 +08:00
|
|
|
|
2022-12-13 08:00:12 +08:00
|
|
|
vcpkg_cmake_config_fixup(CONFIG_PATH lib/cmake/fastcdr)
|
2018-10-21 05:17:14 +08:00
|
|
|
|
2018-03-10 18:59:43 +08:00
|
|
|
vcpkg_copy_pdbs()
|
|
|
|
|
|
|
|
file(REMOVE_RECURSE ${CURRENT_PACKAGES_DIR}/debug/include ${CURRENT_PACKAGES_DIR}/lib/fastcdr ${CURRENT_PACKAGES_DIR}/debug/lib/fastcdr)
|
2020-10-09 14:31:35 +08:00
|
|
|
file(REMOVE_RECURSE ${CURRENT_PACKAGES_DIR}/debug/share)
|
2018-03-10 18:59:43 +08:00
|
|
|
|
2023-01-17 04:17:34 +08:00
|
|
|
if(VCPKG_LIBRARY_LINKAGE STREQUAL "dynamic")
|
|
|
|
vcpkg_replace_string("${CURRENT_PACKAGES_DIR}/include/fastcdr/eProsima_auto_link.h" "(defined(_DLL) || defined(_RTLDLL)) && defined(EPROSIMA_DYN_LINK)" "1")
|
|
|
|
vcpkg_replace_string("${CURRENT_PACKAGES_DIR}/include/fastcdr/fastcdr_dll.h" "defined(FASTCDR_DYN_LINK)" "1")
|
2018-03-10 18:59:43 +08:00
|
|
|
endif()
|
|
|
|
|
2023-01-17 04:17:34 +08:00
|
|
|
vcpkg_install_copyright(FILE_LIST "${SOURCE_PATH}/LICENSE")
|