diff options
Diffstat (limited to 'vcpkg/ports/qtconnectivity')
| -rw-r--r-- | vcpkg/ports/qtconnectivity/portfile.cmake | 12 | ||||
| -rw-r--r-- | vcpkg/ports/qtconnectivity/vcpkg.json | 25 |
2 files changed, 37 insertions, 0 deletions
diff --git a/vcpkg/ports/qtconnectivity/portfile.cmake b/vcpkg/ports/qtconnectivity/portfile.cmake new file mode 100644 index 0000000..5eefc2d --- /dev/null +++ b/vcpkg/ports/qtconnectivity/portfile.cmake @@ -0,0 +1,12 @@ +set(SCRIPT_PATH "${CURRENT_INSTALLED_DIR}/share/qtbase") +include("${SCRIPT_PATH}/qt_install_submodule.cmake") + +set(${PORT}_PATCHES) + +qt_install_submodule(PATCHES ${${PORT}_PATCHES} + CONFIGURE_OPTIONS + -DCMAKE_DISABLE_FIND_PACKAGE_BlueZ:BOOL=ON + -DCMAKE_DISABLE_FIND_PACKAGE_PCSCLITE:BOOL=ON + CONFIGURE_OPTIONS_RELEASE + CONFIGURE_OPTIONS_DEBUG + ) diff --git a/vcpkg/ports/qtconnectivity/vcpkg.json b/vcpkg/ports/qtconnectivity/vcpkg.json new file mode 100644 index 0000000..054a8dd --- /dev/null +++ b/vcpkg/ports/qtconnectivity/vcpkg.json @@ -0,0 +1,25 @@ +{ + "name": "qtconnectivity", + "version": "6.9.1", + "description": "The Qt Connectivity module provides access to Bluetooth and NFC hardware.", + "homepage": "https://www.qt.io/", + "license": null, + "dependencies": [ + { + "name": "qtbase", + "default-features": false, + "features": [ + "gui", + "network" + ] + }, + { + "name": "qtbase", + "default-features": false, + "features": [ + "dbus" + ], + "platform": "!(windows & static) & !android & !ios" + } + ] +} |