From 630a45ed25d1edf37309b842f9109a3283c83be8 Mon Sep 17 00:00:00 2001
From: Fu Juntang <StrongTiger_001@163.com>
Date: 星期五, 03 九月 2021 15:34:31 +0800
Subject: [PATCH] Remove the lock to meet the application scenario.
---
test/CMakeLists.txt | 14 ++++++++++++++
1 files changed, 14 insertions(+), 0 deletions(-)
diff --git a/test/CMakeLists.txt b/test/CMakeLists.txt
index 31bfd83..8a70cb0 100644
--- a/test/CMakeLists.txt
+++ b/test/CMakeLists.txt
@@ -64,4 +64,18 @@
${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