linux: Use Qt 6.4 to support Debian 12

This commit is contained in:
E. S
2025-05-04 01:18:17 +03:00
parent 91675de891
commit 0b4030dd9f
3 changed files with 13 additions and 9 deletions

View File

@@ -8,7 +8,7 @@ set(CMAKE_AUTOMOC ON)
set(CMAKE_AUTORCC ON)
set(CMAKE_AUTOUIC ON)
find_package(Qt6 6.5 REQUIRED COMPONENTS Core Bluetooth Widgets)
find_package(Qt6 6.4 REQUIRED COMPONENTS Core Bluetooth Widgets)
qt_add_executable(ble_monitor
main.cpp
@@ -26,4 +26,4 @@ install(TARGETS ble_monitor
BUNDLE DESTINATION .
LIBRARY DESTINATION ${CMAKE_INSTALL_LIBDIR}
RUNTIME DESTINATION ${CMAKE_INSTALL_BINDIR}
)
)