From 9bd93a540b7cc40f152314c342a814168e4e4b2e Mon Sep 17 00:00:00 2001 From: rex-schilasky <49162693+rex-schilasky@users.noreply.github.com> Date: Mon, 19 Feb 2024 12:56:38 +0100 Subject: [PATCH] path corrections --- CMakeLists.txt | 6 +++--- tests/core_test/CMakeLists.txt | 2 +- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index e406094..ea9ccf8 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -278,20 +278,20 @@ add_subdirectory(ecal/core/cfg) # services # -------------------------------------------------------- if(ECAL_CORE_SERVICE) - add_subdirectory(src/service) + add_subdirectory(ecal/service) endif() # -------------------------------------------------------- # time plugins # -------------------------------------------------------- if(ECAL_CORE_TIMEPLUGIN) - add_subdirectory(src/time) + add_subdirectory(ecal/time) endif() # -------------------------------------------------------- # utils # -------------------------------------------------------- -add_subdirectory(src/utils) +add_subdirectory(ecal/utils) # -------------------------------------------------------- # samples diff --git a/tests/core_test/CMakeLists.txt b/tests/core_test/CMakeLists.txt index 90ed9b7..f082d0a 100644 --- a/tests/core_test/CMakeLists.txt +++ b/tests/core_test/CMakeLists.txt @@ -22,7 +22,7 @@ find_package(Threads REQUIRED) find_package(GTest REQUIRED) set(core_test_src - ecal/core_test.cpp + src/core_test.cpp ) ecal_add_gtest(${PROJECT_NAME} ${core_test_src})