Files
LR-EnviroCommand/app/CMakeLists.txt
T
dragonfly2046 9842c1579b
Gitea Actions Demo / Explore-Gitea-Actions (push) Successful in 4s
Add dummy ui
2026-05-02 08:45:02 -07:00

22 lines
347 B
CMake

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
)