From bab65d759d2861a038ea9e96efa86e60748ac503 Mon Sep 17 00:00:00 2001 From: Graham Pentheny Date: Sat, 29 Oct 2022 14:24:54 -0400 Subject: [PATCH] Updated cmake build with Catch2 library location --- Tests/CMakeLists.txt | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Tests/CMakeLists.txt b/Tests/CMakeLists.txt index a98ccbf..3b90689 100644 --- a/Tests/CMakeLists.txt +++ b/Tests/CMakeLists.txt @@ -1,7 +1,8 @@ -file(GLOB TESTS_SOURCES *.cpp Detour/*.cpp Recast/*.cpp) +file(GLOB TESTS_SOURCES *.cpp Detour/*.cpp Recast/*.cpp Contrib/Catch/*.cpp) include_directories(../Detour/Include) include_directories(../Recast/Include) +include_directories(./Contrib/Catch) include_directories(${CMAKE_CURRENT_SOURCE_DIR}) add_executable(Tests ${TESTS_SOURCES})