19 lines
260 B
CMake
19 lines
260 B
CMake
include(GoogleTest)
|
|
|
|
add_executable(test-utils
|
|
String.cpp
|
|
RecursiveSharedMutex.cpp
|
|
Utils.cpp
|
|
)
|
|
|
|
target_link_libraries(test-utils PRIVATE
|
|
lmsutils
|
|
Threads::Threads
|
|
GTest::GTest
|
|
)
|
|
|
|
if (NOT CMAKE_CROSSCOMPILING)
|
|
gtest_discover_tests(test-utils)
|
|
endif()
|
|
|