create barebones window with list of streams

This commit is contained in:
talksik
2026-01-13 08:02:43 -08:00
parent e38e6a9d4b
commit 2650a5d2c3
5086 changed files with 18788 additions and 3 deletions
+7
View File
@@ -8,6 +8,7 @@ find_package(Qt6 REQUIRED COMPONENTS
Core
Gui
Widgets
SvgWidgets
)
qt_standard_project_setup(REQUIRES 6.8)
@@ -18,6 +19,11 @@ qt_add_executable(llink
src/MainWindow.h
)
qt_add_resources(llink
PREFIX_PATH "/"
FILES ./assets/icons/mono/basic/menu.svg
)
# Qt for iOS sets MACOSX_BUNDLE_GUI_IDENTIFIER automatically since Qt 6.1.
# If you are developing for iOS or macOS you should consider setting an
# explicit, fixed bundle identifier manually though.
@@ -34,6 +40,7 @@ target_link_libraries(llink
Qt6::Core
Qt6::Gui
Qt6::Widgets
Qt6::SvgWidgets
)
include(GNUInstallDirs)