C

Qt Quick Ultralite minimal Example

Demonstrates a basic Qt Quick Ultralite application setup.

Overview

The minimal example shows the basic Qt Quick Ultralite application setup.

Target platforms

Project structure

The minimal example consists of only two files, CMakeLists.txt and minimal.qml.

The CMake project file contains a basic build script and the minimal.qml defines the UI.

CMake project file
cmake_minimum_required (VERSION 3.21.1)

project(minimal VERSION 0.0.1 LANGUAGES C CXX ASM)
if (NOT TARGET Qul::Core)
    find_package(Qul)
endif()

qul_add_target(minimal)
qul_target_qml_sources(minimal minimal.qml)
app_target_setup_os(minimal)
app_target_default_entrypoint(minimal minimal)

if(NOT CMAKE_CROSSCOMPILING AND NOT WIN32)
    add_custom_command(TARGET minimal
        COMMAND strip minimal -o minimal.stripped
        DEPENDS minimal)
endif()

if (QUL_BUILD_QMLPROJECT_EXAMPLES)
    qul_add_target(minimal_qmlproject QML_PROJECT mcu_minimal.qmlproject)
    app_target_setup_os(minimal_qmlproject)
    app_target_default_entrypoint(minimal_qmlproject minimal)

    if(NOT CMAKE_CROSSCOMPILING AND NOT WIN32)
        add_custom_command(TARGET minimal_qmlproject
            COMMAND strip minimal_qmlproject -o minimal.stripped
            DEPENDS minimal_qmlproject)
    endif()
endif()
Application UI
import QtQuick 2.15

Rectangle {
    color: "#41CD52"
    Text {
        anchors.centerIn: parent
        font.pixelSize: 30
        text: "Qt for MCUs"
    }
}

Files:

Available under certain Qt licenses.
Find out more.