diff options
Diffstat (limited to 'vcpkg/ports/qtactiveqt')
| -rw-r--r-- | vcpkg/ports/qtactiveqt/portfile.cmake | 36 | ||||
| -rw-r--r-- | vcpkg/ports/qtactiveqt/vcpkg.json | 35 |
2 files changed, 71 insertions, 0 deletions
diff --git a/vcpkg/ports/qtactiveqt/portfile.cmake b/vcpkg/ports/qtactiveqt/portfile.cmake new file mode 100644 index 0000000..32b1aa7 --- /dev/null +++ b/vcpkg/ports/qtactiveqt/portfile.cmake @@ -0,0 +1,36 @@ +set(SCRIPT_PATH "${CURRENT_INSTALLED_DIR}/share/qtbase") +include("${SCRIPT_PATH}/qt_install_submodule.cmake") + +set(${PORT}_PATCHES) + +set(NO_BIN_AND_TOOLS FALSE) +if(VCPKG_TARGET_ARCHITECTURE MATCHES "^arm" AND VCPKG_TARGET_IS_WINDOWS) + set(NO_BIN_AND_TOOLS TRUE) +endif() + +if(NOT NO_BIN_AND_TOOLS) + set(TOOL_NAMES + dumpcpp + dumpdoc + idc + testcon + ) +endif() + +vcpkg_check_features(OUT_FEATURE_OPTIONS FEATURE_OPTIONS +FEATURES + "qml" CMAKE_REQUIRE_FIND_PACKAGE_Qt6Quick +INVERTED_FEATURES + "qml" CMAKE_DISABLE_FIND_PACKAGE_Qt6Quick +) + +qt_install_submodule(PATCHES ${${PORT}_PATCHES} + TOOL_NAMES ${TOOL_NAMES} + CONFIGURE_OPTIONS ${FEATURE_OPTIONS} + CONFIGURE_OPTIONS_RELEASE + CONFIGURE_OPTIONS_DEBUG + ) + +if(NO_BIN_AND_TOOLS) + file(REMOVE_RECURSE "${CURRENT_PACKAGES_DIR}/bin" "${CURRENT_PACKAGES_DIR}/debug/bin" "${CURRENT_PACKAGES_DIR}/tools") +endif() diff --git a/vcpkg/ports/qtactiveqt/vcpkg.json b/vcpkg/ports/qtactiveqt/vcpkg.json new file mode 100644 index 0000000..1682cea --- /dev/null +++ b/vcpkg/ports/qtactiveqt/vcpkg.json @@ -0,0 +1,35 @@ +{ + "name": "qtactiveqt", + "version": "6.9.1", + "description": "ActiveQt", + "homepage": "https://www.qt.io/", + "license": null, + "supports": "windows", + "dependencies": [ + { + "name": "qtactiveqt", + "host": true, + "default-features": false + }, + { + "$comment": "also requires printsupport!", + "name": "qtbase", + "default-features": false, + "features": [ + "gui", + "widgets" + ] + } + ], + "features": { + "qml": { + "description": "Build QML imports", + "dependencies": [ + { + "name": "qtdeclarative", + "default-features": false + } + ] + } + } +} |