ADD: added Listener and Sender

This commit is contained in:
Henry Winkel
2023-02-15 11:15:28 +01:00
parent 97d3a10e8c
commit 01e61cd482
8 changed files with 437 additions and 20 deletions

View File

@@ -46,6 +46,12 @@ add_library(whisper-com STATIC
include/WHISPER/InternalUDPService.hpp
src/WHISPER/InternalUDPService.cpp
include/WHISPER/InternalUDPListener.hpp
src/WHISPER/InternalUDPListener.cpp
include/WHISPER/InternalUDPSender.hpp
src/WHISPER/InternalUDPSender.cpp
include/WHISPER/localClients.hpp
src/WHISPER/localClients.cpp
@@ -136,5 +142,9 @@ IF (${TEST_WHISPER_COMMUNICATION_LIBRARY})
target_link_libraries(test_test Catch2::Catch2 whisper-com loguru)
catch_discover_tests(test_test)
add_executable(test_InternalUDPListener tests/test_InternalUDPListener.cpp)
target_link_libraries(test_InternalUDPListener Catch2::Catch2 whisper-com loguru)
catch_discover_tests(test_InternalUDPListener)
ENDIF()