From 45c8ae3232df8955644697ee88c4321f26bb5cf2 Mon Sep 17 00:00:00 2001 From: Lorn Potter Date: Wed, 6 Jan 2021 07:30:03 +1000 Subject: QtSensors initial cmake support This commit introduces the bare minimum cmake support that should unblock the CI and allow further verification and development on most platforms: macOS, Linux, Win, iOS and Android. Some clarifications: * The support for sensorfw backend is very preliminary and can be enabled later if needed (no Qt6 version of the sensorfw). * The simulator backend is dropped as obsolete / unnecessary. * Three examples are currently commented out and shall be ported with a later commit. Task-number: QTBUG-92502 Change-Id: Id523d43ed3ef177010dc73afc5812ed374cff0dd Reviewed-by: Alexandru Croitor --- examples/sensors/sensor_explorer/CMakeLists.txt | 54 ++++++++++++++++++++++ examples/sensors/sensor_explorer/import/import.pro | 1 + 2 files changed, 55 insertions(+) create mode 100644 examples/sensors/sensor_explorer/CMakeLists.txt (limited to 'examples/sensors/sensor_explorer') diff --git a/examples/sensors/sensor_explorer/CMakeLists.txt b/examples/sensors/sensor_explorer/CMakeLists.txt new file mode 100644 index 00000000..3440f79b --- /dev/null +++ b/examples/sensors/sensor_explorer/CMakeLists.txt @@ -0,0 +1,54 @@ +cmake_minimum_required(VERSION 3.14) +project(sensor_explorer LANGUAGES CXX) + +set(CMAKE_INCLUDE_CURRENT_DIR ON) + +set(CMAKE_AUTOMOC ON) +set(CMAKE_AUTORCC ON) +set(CMAKE_AUTOUIC ON) + +if(NOT DEFINED INSTALL_EXAMPLESDIR) + set(INSTALL_EXAMPLESDIR "examples") +endif() + +set(INSTALL_EXAMPLEDIR "${INSTALL_EXAMPLESDIR}/sensors/sensor_explorer") + +find_package(Qt6 COMPONENTS Qml Quick) + +qt_add_executable(sensor_explorer + main.cpp +) +set_target_properties(sensor_explorer PROPERTIES + WIN32_EXECUTABLE TRUE + MACOSX_BUNDLE TRUE +) +target_link_libraries(sensor_explorer PUBLIC + Qt::Qml + Qt::Quick +) + + +# Resources: +set(qml_resource_files + "sensor_explorer.qml" +) + +qt6_add_resources(sensor_explorer "qml" + PREFIX + "/" + FILES + ${qml_resource_files} +) + +if(TARGET Qt::Widgets) + target_link_libraries(sensor_explorer PUBLIC + Qt::Widgets + ) +endif() + +install(TARGETS sensor_explorer + RUNTIME DESTINATION "${INSTALL_EXAMPLEDIR}" + BUNDLE DESTINATION "${INSTALL_EXAMPLEDIR}" + LIBRARY DESTINATION "${INSTALL_EXAMPLEDIR}" +) +add_subdirectory(import) diff --git a/examples/sensors/sensor_explorer/import/import.pro b/examples/sensors/sensor_explorer/import/import.pro index 48509214..53bf224b 100644 --- a/examples/sensors/sensor_explorer/import/import.pro +++ b/examples/sensors/sensor_explorer/import/import.pro @@ -1,5 +1,6 @@ TEMPLATE = lib CONFIG += plugin +QML_IMPORT_VERSION = $$QT_VERSION TARGET = $$qtLibraryTarget(declarative_explorer) -- cgit v1.2.3