forked from qt-creator/qt-creator
Remove references to using visual editors and use the example code from Qt Sensors module. Add instructions for using CMake. Add CMakeLists.txt, AndroidManifest.xml, and Info.plist files. Change-Id: I956379fdf7d39161f571893d56250ec2dd2f5ddd Reviewed-by: Alessandro Portale <alessandro.portale@qt.io> Reviewed-by: Assam Boudjelthia <assam.boudjelthia@qt.io>
33 lines
927 B
CMake
33 lines
927 B
CMake
cmake_minimum_required(VERSION 3.16)
|
|
|
|
project(accelbubble VERSION 0.1 LANGUAGES CXX)
|
|
|
|
set(CMAKE_AUTOMOC ON)
|
|
set(CMAKE_CXX_STANDARD_REQUIRED ON)
|
|
|
|
find_package(Qt6 6.2 COMPONENTS Quick Sensors Svg Xml REQUIRED)
|
|
|
|
qt_add_executable(accelbubbleexample
|
|
main.cpp
|
|
MANUAL_FINALIZATION
|
|
)
|
|
set_target_properties(accelbubbleexample PROPERTIES
|
|
MACOSX_BUNDLE_INFO_PLIST "${CMAKE_CURRENT_SOURCE_DIR}/Info.plist"
|
|
)
|
|
set_property(TARGET accelbubbleexample APPEND PROPERTY
|
|
QT_ANDROID_PACKAGE_SOURCE_DIR ${CMAKE_CURRENT_SOURCE_DIR}/android
|
|
)
|
|
qt_add_qml_module(accelbubbleexample
|
|
URI accelbubble
|
|
VERSION 1.0
|
|
QML_FILES main.qml
|
|
RESOURCES Bluebubble.svg
|
|
)
|
|
|
|
target_compile_definitions(accelbubbleexample
|
|
PRIVATE $<$<OR:$<CONFIG:Debug>,$<CONFIG:RelWithDebInfo>>:QT_QML_DEBUG>)
|
|
target_link_libraries(accelbubbleexample
|
|
PRIVATE Qt6::Quick Qt6::Sensors Qt6::Svg Qt6::Xml)
|
|
|
|
qt_finalize_executable(accelbubbleexample)
|