From de80ed87b8339f23624642786698057a62bdf779 Mon Sep 17 00:00:00 2001
From: fujuntang <fujuntang@smartai.com>
Date: 星期二, 23 十一月 2021 11:25:48 +0800
Subject: [PATCH] Fix the communication failure issue when the registered applications exceeds the fixed amount.
---
test/CMakeLists.txt | 29 +++++++++++++++++++++++++++++
1 files changed, 29 insertions(+), 0 deletions(-)
diff --git a/test/CMakeLists.txt b/test/CMakeLists.txt
index 0b001cc..8a70cb0 100644
--- a/test/CMakeLists.txt
+++ b/test/CMakeLists.txt
@@ -49,4 +49,33 @@
+add_executable(UDPServer UDPServer.cpp )
+target_link_libraries(UDPServer PRIVATE ${EXTRA_LIBS} )
+target_include_directories(UDPServer PRIVATE
+ "${PROJECT_BINARY_DIR}"
+ ${EXTRA_INCLUDES}
+ )
+
+add_executable(UDPClient UDPClient.cpp )
+target_link_libraries(UDPClient PRIVATE ${EXTRA_LIBS} )
+target_include_directories(UDPClient PRIVATE
+ "${PROJECT_BINARY_DIR}"
+ ${EXTRA_INCLUDES}
+ )
+
+add_executable(thread_set thread_set.cpp )
+target_link_libraries(thread_set PRIVATE ${EXTRA_LIBS} )
+target_include_directories(thread_set PRIVATE
+ "${PROJECT_BINARY_DIR}"
+ ${EXTRA_INCLUDES}
+ )
+
+
+
+add_executable(test_sem2 test_sem2.cpp )
+target_link_libraries(test_sem2 PRIVATE ${EXTRA_LIBS} )
+target_include_directories(test_sem2 PRIVATE
+ "${PROJECT_BINARY_DIR}"
+ ${EXTRA_INCLUDES}
+ )
--
Gitblit v1.8.0