mirror of
https://github.com/usatiuk/remotefs.git
synced 2025-10-28 07:27:48 +01:00
14 lines
269 B
CMake
14 lines
269 B
CMake
include(gTest)
|
|
|
|
add_executable(
|
|
SerializableHelperTest
|
|
src/SerializableHelperTest.cpp
|
|
)
|
|
|
|
target_link_libraries(
|
|
SerializableHelperTest PRIVATE
|
|
GTest::gtest_main utils
|
|
)
|
|
|
|
gtest_discover_tests(SerializableHelperTest DISCOVERY_TIMEOUT 600)
|