From 4ab0d90afc80a704eefd947db3d94efa4ec273e0 Mon Sep 17 00:00:00 2001 From: yusuf601 Date: Sat, 14 Feb 2026 21:53:05 +0700 Subject: [PATCH] chore: use INTERFACE in target_include dir --- CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index b5442af..129faf9 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -8,7 +8,7 @@ set(CMAKE_CXX_EXTENSIONS OFF) # --- Source & header setup --- add_executable(implementation implementation/implementation.cpp) -target_include_directories(implementation PRIVATE header) +target_include_directories(implementation INTERFACE header) # --- GoogleTest setup via FetchContent --- include(FetchContent)