Stefan d5afd6beac chore(CPP): Create new wallet accounts - POC UI
The UI is for demo purposes. Also architecture decisions are open for change

Closes: #6321
2022-08-02 15:30:08 +02:00

30 lines
774 B
CMake

# Controls specialized on user workflows
project(StatusQ_Controls_Navigation)
set(QT_NO_CREATE_VERSIONLESS_FUNCTIONS true)
find_package(Qt6 ${STATUS_QT_VERSION} COMPONENTS Quick Qml REQUIRED)
qt6_standard_project_setup()
set_source_files_properties(Style.qml PROPERTIES
QT_QML_SINGLETON_TYPE TRUE
)
qt6_add_qml_module(${PROJECT_NAME}
URI Status.Controls.Navigation
VERSION 1.0
QML_FILES
ApplicationContentView.qml
ApplicationSection.qml
ApplicationState.qml
MacTrafficLights.qml
NavigationBar.qml
NavigationBarSection.qml
PanelAndContentBase.qml
# Required to suppress "qmllint may not work" warning
OUTPUT_DIRECTORY
${CMAKE_RUNTIME_OUTPUT_DIRECTORY}/Status/Controls/Navigation
)