From 6d4af27d1b43860d8deb3d1d2b2a910e82618ac1 Mon Sep 17 00:00:00 2001 From: Tafil Avdyli Date: Sat, 24 Jan 2026 09:14:03 +0100 Subject: [PATCH] CMakeLists: drop PYTHON_INCLUDE_DIRS from interface Including PYTHON_INCLUDE_DIRS in the INTERFACE list caused a hard-coded Python include directory (e.g. /usr/include/python3.13) to appear in the generated Targets.cmake file. This resulted in a CMake configuration error when the path did not exist: Imported target "pybind11_json" includes non-existent path "/usr/include/python3.13" pybind11_json is header-only and does not use Python headers, so the include path should not be exported. --- CMakeLists.txt | 1 - 1 file changed, 1 deletion(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 0be4838..4b305e4 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -45,7 +45,6 @@ add_library(${PROJECT_NAME} INTERFACE) target_include_directories(${PROJECT_NAME} INTERFACE - ${PYTHON_INCLUDE_DIRS} $ $)