From d7af8bc2e4294520c6946cff39483e039d266a1d Mon Sep 17 00:00:00 2001 From: jakeg00dwin Date: Fri, 15 Mar 2024 13:47:21 -0700 Subject: [PATCH] added the C++/11 directory to includes --- CMakeLists.txt | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index b6e8daa..8414a0e 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -64,7 +64,10 @@ if (UNIT_TESTING) message(STATUS "Found CppUTest version ${CPPUTEST_VERSION}") endif() - include_directories(${CPPUTEST_INCLUDE_DIRS} ../src/) + include_directories( + ${CPPUTEST_INCLUDE_DIRS} + /usr/include/c++/11/ + ) link_directories(${CPPUTEST_LIBRARIES}) message(STATUS "CPPUTEST_DIR: ${CPPUTEST_DIR}")