From d6d7965823346a20700494048eeee63ca4dd7444 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?D=C3=A1vid=20Benko?= Date: Fri, 6 Sep 2024 23:40:27 +0200 Subject: [PATCH] Tests: move `include` and `src` directories inside `test` Moves `include` and `src` directories from repository root to `test`. They should only contain dummy adapters, etc. --- test/CMakeLists.txt | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/test/CMakeLists.txt b/test/CMakeLists.txt index 8ad985d..0912ea6 100644 --- a/test/CMakeLists.txt +++ b/test/CMakeLists.txt @@ -20,11 +20,12 @@ execute_process( include_directories( "../include" "../priv_include" + "include" ) file(GLOB srcs CONFIGURE_DEPENDS "../src/common/*.cpp" - "../src/linux/logger.cpp" - "../src/testing/*.cpp" + "../src/linux/*.cpp" + "src/*.cpp" "tests/*.cpp" ) add_executable(kvik_test ${srcs})