set(target mainApp)

qt_add_executable(${target}
    main.cpp
)

qt_add_qml_module(${target}
    URI "app"
    VERSION 0.1.0
    QML_FILES
        main.qml
)

target_compile_features(${target} PRIVATE cxx_std_23)

target_link_libraries(${target}
    PRIVATE
        Qt6::Charts
        Qt6::Quick
        project_core
        project_viewsplugin
)