some basic ui pieces

This commit is contained in:
Chris Cochrun 2022-02-08 10:14:00 -06:00
parent 9c73c8c567
commit 8f4c2a4e94
52 changed files with 1251 additions and 1906 deletions

View file

@ -1,2 +1,19 @@
add_executable(helloworld main.cpp resources.qrc)
target_link_libraries(helloworld Qt5::Quick Qt5::Qml Qt5::Gui Qt5::QuickControls2 Qt5::Widgets KF5::Kirigami2 KF5::I18n)
add_executable(presenter)
target_sources(presenter
PRIVATE
main.cpp resources.qrc
)
target_link_libraries(presenter
Qt5::Quick
Qt5::Qml
Qt5::Gui
Qt5::QuickControls2
Qt5::Widgets
KF5::Kirigami2
KF5::I18n
)
target_compile_options (presenter PUBLIC -fexceptions)