From bd2117481ebea1131a7058272bec1ce3f193d01d Mon Sep 17 00:00:00 2001 From: Sylwester Arabas Date: Fri, 11 Sep 2026 18:45:57 +0200 Subject: [PATCH] Log Python_INCLUDE_DIRS in CMake configuration Added message to display Python_INCLUDE_DIRS. --- CMakeLists.txt | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 35e06605..8ff3c430 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -20,6 +20,7 @@ find_package(Python 3.8 REQUIRED COMPONENTS Interpreter Development.Module OPTIONAL_COMPONENTS Development.SABIModule) message(STATUS "Python_EXECUTABLE= ${Python_EXECUTABLE}") +message(STATUS "Python_INCLUDE_DIRS= ${Python_INCLUDE_DIRS}") set(CMAKE_POSITION_INDEPENDENT_CODE ON) @@ -720,4 +721,4 @@ _install( _install( DIRECTORY ${CMAKE_CURRENT_SOURCE_DIR}/src/PyPartMC/cmake DESTINATION PyPartMC -) \ No newline at end of file +)