diff options
author | Jan-Simon Moeller <jsmoeller@linuxfoundation.org> | 2024-11-19 13:19:46 +0100 |
---|---|---|
committer | Jan-Simon Moeller <jsmoeller@linuxfoundation.org> | 2024-11-19 13:19:56 +0100 |
commit | 4f75c049e8ba1e7fd4f1094f9ed8b681318f021d (patch) | |
tree | aa98230ff962aeba9775c459515b229c8eac47a0 /map | |
parent | 1d78b4a6f9ba4807901c6fc30ece2b84754908e8 (diff) |
Import Qt6 conversion patchHEADtrout_19.90.0trout/19.90.019.90.0master
Import the patches for the demo applications into the app repos.
Bug-AGL: SPEC-5294
Change-Id: I516a951cdd49dbfb1729bf4e49360333b951bad3
Signed-off-by: Jan-Simon Moeller <jsmoeller@linuxfoundation.org>
Diffstat (limited to 'map')
-rw-r--r-- | map/meson.build | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/map/meson.build b/map/meson.build index 1f563e6..e68cd0e 100644 --- a/map/meson.build +++ b/map/meson.build @@ -1,14 +1,14 @@ -qt5_dep = dependency('qt5', modules: ['Qml']) +qt_dep = dependency('qt6', modules: ['Qml']) -moc_files = qt5.compile_moc(headers : 'map.h', - dependencies: qt5_dep) +moc_files = qt.compile_moc(headers : 'map.h', + dependencies: qt_dep) src = ['map.cpp', moc_files] lib = shared_library('qtappfw-bt-map', sources: src, version: '1.0.0', soversion: '0', - dependencies: [qt5_dep, qtappfw_bt_dep], + dependencies: [qt_dep, qtappfw_bt_dep], install: true) install_headers('map.h') @@ -18,5 +18,5 @@ pkg_mod.generate(libraries : lib, version : '1.0', name : 'libqtappfw-bt-map', filebase : 'qtappfw-bt-map', - requires: 'Qt5Qml', + requires: 'Qt6Qml', description : 'Library wrapping AGL Bluetooth MAP profile API in Qt objects') |