Files
LR-EnviroCommand/app/CMakeLists.txt
T
dragonfly2046 1beefa7d11
Gitea Actions Demo / Explore-Gitea-Actions (push) Successful in 4s
Add QtQuick app sample code
2026-04-29 21:18:49 -07:00

15 lines
245 B
CMake

set(target mainApp)
qt_add_executable(${target}
main.cpp
)
qt_add_qml_module(${target}
URI app
QML_FILES
main.qml
)
target_compile_features(${target} PRIVATE cxx_std_23)
target_link_libraries(${target} PRIVATE Qt6::Quick)