Submitted By:            James A Dillon <sysopj@gmail.com>
Date:                    2025-06-25
Initial Package Version: 6.9.0
Upstream Status:         N/A
Origin:                  LFS
Description:             Fixed can not find Python.h

diff -Naru CMakeLists.txt.orig CMakeLists.txt
--- CMakeLists.txt.orig	2025-06-24 22:44:25.798847347 -0400
+++ CMakeLists.txt	2025-06-24 22:44:56.573763395 -0400
@@ -6,6 +6,9 @@
 
 set(CMAKE_BUILD_TYPE Release CACHE STRING "Build Type")
 
+find_package(Python3 REQUIRED COMPONENTS Interpreter Development)
+include_directories(${Python3_INCLUDE_DIRS})
+
 project(pyside6_super_project)
 
 if (CMAKE_SOURCE_DIR STREQUAL CMAKE_BINARY_DIR)
