Moved test folder

previous location caused issues with building the main SW
This commit is contained in:
Cabooman 2024-02-05 22:53:10 +01:00
parent da8421dcff
commit 396f41ed77
6 changed files with 3 additions and 3 deletions

View file

@ -3,4 +3,4 @@ cmake_minimum_required(VERSION 3.10)
project(BatteryEmulator) project(BatteryEmulator)
add_subdirectory(Software/src/devboard/utils) add_subdirectory(Software/src/devboard/utils)
add_subdirectory(Software/test) add_subdirectory(test)

View file

@ -1,5 +1,5 @@
// The test library must be included first! // The test library must be included first!
#include "../../../test/test_lib.h" #include "../../../../test/test_lib.h"
#include "events.cpp" #include "events.cpp"

View file

@ -1,4 +1,4 @@
add_executable(events_test ../src/devboard/utils/events_test.cpp test_lib.cpp) add_executable(events_test ../Software/src/devboard/utils/events_test.cpp test_lib.cpp)
target_compile_definitions(events_test PRIVATE UNIT_TEST) target_compile_definitions(events_test PRIVATE UNIT_TEST)