fix(ci): Add Playerbot include directories to tests CMakeLists.txt

- tests/CMakeLists.txt: Add Playerbot module include paths
- Fix include paths in all Phase5 test files to use relative paths

Signed-off-by: luis <[email protected]>
This commit is contained in:
agatho
2026-01-22 21:40:10 -03:00
committed by luis
parent 4d3216a2b9
commit ce80b6ce5f
3 changed files with 6 additions and 3 deletions
+4 -1
View File
@@ -24,7 +24,10 @@ target_link_libraries(tests
target_include_directories(tests target_include_directories(tests
PRIVATE PRIVATE
${CMAKE_CURRENT_BINARY_DIR}) ${CMAKE_CURRENT_BINARY_DIR}
${CMAKE_SOURCE_DIR}/src/modules/Playerbot
${CMAKE_SOURCE_DIR}/src/modules/Playerbot/AI
${CMAKE_SOURCE_DIR}/src/modules/Playerbot/AI/Decision)
catch_discover_tests(tests) catch_discover_tests(tests)
+1 -1
View File
@@ -16,7 +16,7 @@
*/ */
#include "tc_catch2.h" #include "tc_catch2.h"
#include "modules/Playerbot/AI/Decision/BehaviorTree.h" #include "AI/Decision/BehaviorTree.h"
using namespace bot::ai; using namespace bot::ai;
+1 -1
View File
@@ -16,7 +16,7 @@
*/ */
#include "tc_catch2.h" #include "tc_catch2.h"
#include "modules/Playerbot/AI/Decision/DecisionFusionSystem.h" #include "AI/Decision/DecisionFusionSystem.h"
using namespace bot::ai; using namespace bot::ai;