Where are Python headers included in MacOS Monterey arm64
I am currently struggling to find the python headers on my system and can’t include them therefore into a C++ application this is my cmake file –> cmake_minimum_required(VERSION 3.14) project(ondoki-desktop VERSION 0.1 LANGUAGES CXX) set(CMAKE_INCLUDE_CURRENT_DIR ON) set(CMAKE_TOOLCHAIN_FILE /Users/ahoehne/repos/vcpkg/scripts/buildsystems/vcpkg.cmake) set(CMAKE_AUTOUIC ON) set(CMAKE_AUTOMOC ON) set(CMAKE_AUTORCC ON) set(CMAKE_CXX_STANDARD 20) set(CMAKE_CXX_STANDARD_REQUIRED ON) include_directories(${PYTHON_INCLUDE_DIRS}) find_package(Python3 COMPONENTS Interpreter REQUIRED) if(DEFINED ENV{VIRTUAL_ENV}… Read More Where are Python headers included in MacOS Monterey arm64