From 2145308fff868b3b0c234d242db4c47ff9607fa3 Mon Sep 17 00:00:00 2001 From: crupest Date: Sun, 15 May 2022 13:35:50 +0800 Subject: ... --- test/common/CMakeLists.txt | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) (limited to 'test/common') diff --git a/test/common/CMakeLists.txt b/test/common/CMakeLists.txt index 18f69e32..17cfa85b 100644 --- a/test/common/CMakeLists.txt +++ b/test/common/CMakeLists.txt @@ -1,28 +1,28 @@ -add_executable(cru_base_test +add_executable(CruBaseTest HandlerRegistryTest.cpp PropertyTreeTest.cpp StringTest.cpp StringToNumberConverterTest.cpp StringUtilTest.cpp ) -target_link_libraries(cru_base_test PRIVATE cru_base cru_test_base) +target_link_libraries(CruBaseTest PRIVATE CruBase cru_test_base) if (UNIX) - target_sources(cru_base_test PRIVATE + target_sources(CruBaseTest PRIVATE platform/unix/UnixFileStreamTest.cpp ) endif() if (WIN32) - target_sources(cru_base_test PRIVATE + target_sources(CruBaseTest PRIVATE platform/win/StreamConvertTest.cpp platform/win/Win32FileStreamTest.cpp ) - add_custom_command(TARGET cru_base_test POST_BUILD - COMMAND ${CMAKE_COMMAND} -E copy $ $ + add_custom_command(TARGET CruBaseTest POST_BUILD + COMMAND ${CMAKE_COMMAND} -E copy $ $ COMMAND_EXPAND_LISTS ) endif() -catch_discover_tests(cru_base_test) +catch_discover_tests(CruBaseTest) -- cgit v1.2.3