From 6016f1fd8e588637998deb5dce729a047943c735 Mon Sep 17 00:00:00 2001 From: tobid7 Date: Thu, 16 Oct 2025 19:50:59 +0200 Subject: [PATCH] Fix header errors with multiple palladium includes --- CMakeLists.txt | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index a6a8e4e..814d96f 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -31,7 +31,8 @@ add_library(ctrff STATIC source/bcwav.cpp source/3dsx.cpp ) -target_include_directories(ctrff PUBLIC include vendor/palladium/include) +target_include_directories(ctrff PUBLIC include) +target_include_directories(ctrff PRIVATE vendor/palladium/include) if(${CTRFF_DESKTOP}) add_executable(ctrff-cli tool/main.cpp)