Skip to content

Commit

Permalink
Tests: move include and src directories inside test
Browse files Browse the repository at this point in the history
Moves  `include` and `src` directories from repository root to `test`.
They should only contain dummy adapters, etc.
  • Loading branch information
DavidB137 committed Sep 6, 2024
1 parent 4eb7dec commit d6d7965
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions test/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -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})
Expand Down

0 comments on commit d6d7965

Please sign in to comment.