mirror of
https://github.com/microsoft/vcpkg.git
synced 2024-12-02 18:09:00 +08:00
6960e3f076
This allows to link the target application using CMake < 3.18 and fixing a regression since v0.13.0
39 lines
1.3 KiB
CMake
39 lines
1.3 KiB
CMake
message(WARNING "qtkeychain is a third-party extension to Qt and is not affiliated with The Qt Company")
|
|
|
|
vcpkg_from_github(
|
|
OUT_SOURCE_PATH SOURCE_PATH
|
|
REPO frankosterfeld/qtkeychain
|
|
# 0.13.2 plus two commits, for a CMake export target fix
|
|
REF e5eeb1763e295f6b05a3f008ee7ae192fd74ed0c
|
|
SHA512 c6f216c8acdd89607d16582305bff962a0049512565f8ead7bebf06bce1540cdf41cc8b6dc31b45396befd90a3bd65a2f8a969242f302cbb61438ff7a48aab1c
|
|
HEAD_REF master
|
|
)
|
|
|
|
# Opportunity to build without dependency on qt5-tools/qt5-declarative
|
|
set(BUILD_TRANSLATIONS OFF)
|
|
if("translations" IN_LIST FEATURES)
|
|
set(BUILD_TRANSLATIONS ON)
|
|
endif()
|
|
|
|
vcpkg_cmake_configure(
|
|
DISABLE_PARALLEL_CONFIGURE
|
|
SOURCE_PATH ${SOURCE_PATH}
|
|
OPTIONS
|
|
-DBUILD_WITH_QT6=OFF
|
|
-DBUILD_TEST_APPLICATION=OFF
|
|
-DBUILD_TRANSLATIONS=${BUILD_TRANSLATIONS}
|
|
)
|
|
vcpkg_cmake_install()
|
|
|
|
vcpkg_copy_pdbs()
|
|
vcpkg_cmake_config_fixup(CONFIG_PATH lib/cmake/Qt5Keychain PACKAGE_NAME Qt5Keychain)
|
|
|
|
# Remove unneeded dirs
|
|
file(REMOVE_RECURSE
|
|
"${CURRENT_PACKAGES_DIR}/debug/include"
|
|
"${CURRENT_PACKAGES_DIR}/debug/share"
|
|
)
|
|
|
|
# Handle copyright
|
|
file(INSTALL "${SOURCE_PATH}/COPYING" DESTINATION "${CURRENT_PACKAGES_DIR}/share/${PORT}" RENAME copyright)
|