Moved unit tests close to the sources

This commit is contained in:
emeric
2021-09-29 11:57:11 +02:00
parent 6a8063640b
commit 4e9cf0d77f
18 changed files with 10 additions and 11 deletions
+16
View File
@@ -0,0 +1,16 @@
include(GoogleTest)
add_executable(test-utils
String.cpp
RecursiveSharedMutex.cpp
Utils.cpp
)
target_link_libraries(test-utils PRIVATE
lmsutils
Threads::Threads
GTest::GTest
)
gtest_discover_tests(test-utils)