2017-07-07 22:32:34 +08:00
|
|
|
include(vcpkg_common_functions)
|
|
|
|
|
2017-12-06 05:01:50 +08:00
|
|
|
vcpkg_from_github(
|
|
|
|
OUT_SOURCE_PATH SOURCE_PATH
|
|
|
|
REPO arvidn/libtorrent
|
2019-08-16 06:35:29 +08:00
|
|
|
REF bcb26fd638bd8c543cd3cc42837b120ff86d44b1
|
|
|
|
SHA512 af897d2daca6e67efe777724147b1047624df9df938222fe967d380263d88ccb3c081e1a24a6c790bf1b35f46385ef08b46d8e46d0922f945cd28c59dd0d35a7
|
2017-12-06 05:01:50 +08:00
|
|
|
HEAD_REF master
|
2019-05-17 09:33:32 +08:00
|
|
|
PATCHES
|
|
|
|
add-datetime-to-boost-libs.patch
|
2017-07-07 22:32:34 +08:00
|
|
|
)
|
|
|
|
|
2017-12-06 05:01:50 +08:00
|
|
|
string(COMPARE EQUAL "${VCPKG_LIBRARY_LINKAGE}" "dynamic" LIBTORRENT_SHARED)
|
|
|
|
|
2017-07-07 22:32:34 +08:00
|
|
|
vcpkg_configure_cmake(
|
|
|
|
SOURCE_PATH ${SOURCE_PATH}
|
|
|
|
PREFER_NINJA # Disable this option if project cannot be built with Ninja
|
|
|
|
OPTIONS
|
2017-07-10 04:34:33 +08:00
|
|
|
-Dshared=${LIBTORRENT_SHARED}
|
2017-07-07 22:32:34 +08:00
|
|
|
-Ddeprecated-functions=off
|
|
|
|
)
|
|
|
|
|
|
|
|
vcpkg_install_cmake()
|
|
|
|
|
2017-12-06 05:01:50 +08:00
|
|
|
if (VCPKG_LIBRARY_LINKAGE STREQUAL "dynamic")
|
2017-07-10 04:34:33 +08:00
|
|
|
# Defines for shared lib
|
2019-01-31 08:04:17 +08:00
|
|
|
file(READ ${CURRENT_PACKAGES_DIR}/include/libtorrent/aux_/export.hpp EXPORT_H)
|
2017-07-10 04:34:33 +08:00
|
|
|
string(REPLACE "defined TORRENT_BUILDING_SHARED" "1" EXPORT_H "${EXPORT_H}")
|
2019-01-31 08:04:17 +08:00
|
|
|
file(WRITE ${CURRENT_PACKAGES_DIR}/include/libtorrent/aux_/export.hpp "${EXPORT_H}")
|
2017-07-07 22:32:34 +08:00
|
|
|
endif()
|
|
|
|
|
2019-01-31 08:04:17 +08:00
|
|
|
vcpkg_fixup_cmake_targets(CONFIG_PATH lib/cmake/LibtorrentRasterbar TARGET_PATH share/libtorrentrasterbar)
|
|
|
|
|
2017-07-07 22:32:34 +08:00
|
|
|
# Handle copyright
|
|
|
|
file(COPY ${SOURCE_PATH}/LICENSE DESTINATION ${CURRENT_PACKAGES_DIR}/share/libtorrent)
|
|
|
|
file(RENAME ${CURRENT_PACKAGES_DIR}/share/libtorrent/LICENSE ${CURRENT_PACKAGES_DIR}/share/libtorrent/copyright)
|
|
|
|
|
|
|
|
# Do not duplicate include files
|
2019-01-31 08:04:17 +08:00
|
|
|
file(REMOVE_RECURSE ${CURRENT_PACKAGES_DIR}/debug/include ${CURRENT_PACKAGES_DIR}/debug/share ${CURRENT_PACKAGES_DIR}/share/cmake)
|