2021-11-16 00:53:52 +08:00
|
|
|
message(WARNING "qtkeychain is a third-party extension to Qt and is not affiliated with The Qt Company")
|
|
|
|
|
2019-08-20 23:43:20 +08:00
|
|
|
vcpkg_from_github(
|
|
|
|
OUT_SOURCE_PATH SOURCE_PATH
|
|
|
|
REPO frankosterfeld/qtkeychain
|
2023-09-14 06:53:40 +08:00
|
|
|
REF "${VERSION}"
|
|
|
|
SHA512 bf84b19090e667a2946297e63d9813574193d80e4eecbde2fdfca317a66da3f029b3abef326f4ffb32de032a48004f9cf1bc818468af612723d762652dc25eb6
|
2019-08-20 23:43:20 +08:00
|
|
|
HEAD_REF master
|
|
|
|
)
|
|
|
|
|
2021-12-14 04:22:14 +08:00
|
|
|
# Opportunity to build without dependency on qt5-tools/qt5-declarative
|
|
|
|
set(BUILD_TRANSLATIONS OFF)
|
|
|
|
if("translations" IN_LIST FEATURES)
|
|
|
|
set(BUILD_TRANSLATIONS ON)
|
|
|
|
endif()
|
|
|
|
|
2021-11-16 00:53:52 +08:00
|
|
|
vcpkg_cmake_configure(
|
|
|
|
DISABLE_PARALLEL_CONFIGURE
|
2019-08-20 23:43:20 +08:00
|
|
|
SOURCE_PATH ${SOURCE_PATH}
|
2021-11-16 00:53:52 +08:00
|
|
|
OPTIONS
|
|
|
|
-DBUILD_WITH_QT6=OFF
|
2021-11-20 14:19:18 +08:00
|
|
|
-DBUILD_TEST_APPLICATION=OFF
|
2021-12-14 04:22:14 +08:00
|
|
|
-DBUILD_TRANSLATIONS=${BUILD_TRANSLATIONS}
|
2019-08-20 23:43:20 +08:00
|
|
|
)
|
2021-11-16 00:53:52 +08:00
|
|
|
vcpkg_cmake_install()
|
2019-08-20 23:43:20 +08:00
|
|
|
|
|
|
|
vcpkg_copy_pdbs()
|
2021-11-16 00:53:52 +08:00
|
|
|
vcpkg_cmake_config_fixup(CONFIG_PATH lib/cmake/Qt5Keychain PACKAGE_NAME Qt5Keychain)
|
2019-08-20 23:43:20 +08:00
|
|
|
|
|
|
|
# Remove unneeded dirs
|
2021-11-16 00:53:52 +08:00
|
|
|
file(REMOVE_RECURSE
|
|
|
|
"${CURRENT_PACKAGES_DIR}/debug/include"
|
|
|
|
"${CURRENT_PACKAGES_DIR}/debug/share"
|
2019-08-20 23:43:20 +08:00
|
|
|
)
|
|
|
|
|
|
|
|
# Handle copyright
|
2021-11-16 00:53:52 +08:00
|
|
|
file(INSTALL "${SOURCE_PATH}/COPYING" DESTINATION "${CURRENT_PACKAGES_DIR}/share/${PORT}" RENAME copyright)
|