From 3a09986553dd7778cae43d552c9006a30973ce3a Mon Sep 17 00:00:00 2001 From: Victor Stinner Date: Fri, 21 Mar 2025 16:24:15 +0100 Subject: gh-131238: Add pycore_interpframe.h to PYTHON_HEADERS (#131545) Add pycore_interpframe.h to Makefile.pre.in and pythoncore.vcxproj. --- Makefile.pre.in | 1 + PCbuild/pythoncore.vcxproj | 1 + PCbuild/pythoncore.vcxproj.filters | 3 +++ 3 files changed, 5 insertions(+) diff --git a/Makefile.pre.in b/Makefile.pre.in index db84eb6..92f3984 100644 --- a/Makefile.pre.in +++ b/Makefile.pre.in @@ -1256,6 +1256,7 @@ PYTHON_HEADERS= \ $(srcdir)/Include/internal/pycore_instruction_sequence.h \ $(srcdir)/Include/internal/pycore_interp.h \ $(srcdir)/Include/internal/pycore_interp_structs.h \ + $(srcdir)/Include/internal/pycore_interpframe.h \ $(srcdir)/Include/internal/pycore_intrinsics.h \ $(srcdir)/Include/internal/pycore_jit.h \ $(srcdir)/Include/internal/pycore_list.h \ diff --git a/PCbuild/pythoncore.vcxproj b/PCbuild/pythoncore.vcxproj index 6fd3964..e876bd4 100644 --- a/PCbuild/pythoncore.vcxproj +++ b/PCbuild/pythoncore.vcxproj @@ -261,6 +261,7 @@ + diff --git a/PCbuild/pythoncore.vcxproj.filters b/PCbuild/pythoncore.vcxproj.filters index 816bde5..6fcfb02 100644 --- a/PCbuild/pythoncore.vcxproj.filters +++ b/PCbuild/pythoncore.vcxproj.filters @@ -702,6 +702,9 @@ Include\internal + + Include\internal + Include\cpython -- cgit v0.12