From 799151f96f8c7568a915b43bdc4e97013865a2ea Mon Sep 17 00:00:00 2001 From: Chris Lalancette Date: Mon, 14 Aug 2023 14:53:23 -0400 Subject: [PATCH] Move test_namespace into the correct directory. (#1087) Signed-off-by: Chris Lalancette --- rcl/test/CMakeLists.txt | 2 +- rcl/test/{ => rcl}/test_namespace.cpp | 0 2 files changed, 1 insertion(+), 1 deletion(-) rename rcl/test/{ => rcl}/test_namespace.cpp (100%) diff --git a/rcl/test/CMakeLists.txt b/rcl/test/CMakeLists.txt index 1931d0cb2..506dbf8d8 100644 --- a/rcl/test/CMakeLists.txt +++ b/rcl/test/CMakeLists.txt @@ -295,7 +295,7 @@ function(test_target_function) ) rcl_add_custom_gtest(test_namespace${target_suffix} - SRCS test_namespace.cpp + SRCS rcl/test_namespace.cpp ENV ${rmw_implementation_env_var} APPEND_LIBRARY_DIRS ${extra_lib_dirs} LIBRARIES ${PROJECT_NAME} diff --git a/rcl/test/test_namespace.cpp b/rcl/test/rcl/test_namespace.cpp similarity index 100% rename from rcl/test/test_namespace.cpp rename to rcl/test/rcl/test_namespace.cpp