From f4d36ad960928f9321bf9351cbcde1ff50cab50b Mon Sep 17 00:00:00 2001 From: Pascal Serrarens Date: Tue, 17 Jun 2025 17:55:01 +0200 Subject: [PATCH] Add target_include_directories --- CMakeLists.txt | 3 +++ 1 file changed, 3 insertions(+) diff --git a/CMakeLists.txt b/CMakeLists.txt index 63a3359..75b9504 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -27,6 +27,9 @@ else() LinearAlgebra ) add_library(RoboidControl STATIC ${srcs}) + target_include_directories(RoboidControl PUBLIC + ${CMAKE_CURRENT_SOURCE_DIR} + ) project(RoboidControl) add_subdirectory(LinearAlgebra)