feat: implement MainWindow label update on valueReceived

This commit is contained in:
2026-03-10 18:36:08 +00:00
parent 040cf974f4
commit 32426b3028
2 changed files with 53 additions and 0 deletions

View File

@@ -53,3 +53,23 @@ target_link_libraries(test_consumer
)
add_test(NAME test_consumer COMMAND test_consumer)
add_executable(test_main_window
test_main_window.cxx
${CMAKE_SOURCE_DIR}/src/app/MainWindow.cxx
${CMAKE_SOURCE_DIR}/include/MainWindow.hpp
)
target_include_directories(test_main_window PRIVATE ${CMAKE_SOURCE_DIR}/include)
target_link_libraries(test_main_window
PRIVATE
core
gtest
gtest_main
Qt5::Core
Qt5::Widgets
Qt5::Test
)
add_test(NAME test_main_window COMMAND test_main_window)