feat: prepared the cmake lists for qt dependencies

This commit is contained in:
2026-03-10 19:05:27 +01:00
parent 2d519937b7
commit da875871ef
2 changed files with 24 additions and 0 deletions

View File

@@ -37,3 +37,19 @@ target_link_libraries(test_ipc
)
add_test(NAME test_ipc COMMAND test_ipc)
add_executable(test_consumer
test_consumer.cxx
)
target_link_libraries(test_consumer
PRIVATE
core
gtest
gtest_main
Qt5::Core
Qt5::Test
)
add_test(NAME test_consumer COMMAND test_consumer)