diff options
author | Victor Stinner <vstinner@python.org> | 2022-04-21 21:00:26 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-04-21 21:00:26 (GMT) |
commit | 6f9addb5ba0729e4bd2a1919d02e55c25382e26e (patch) | |
tree | ae91c96db2703920c80cfefe6756af26e6df4c06 /PCbuild | |
parent | c1474fa6c6496e2bf0fd341ccd735ab2fd6d7764 (diff) | |
download | cpython-6f9addb5ba0729e4bd2a1919d02e55c25382e26e.zip cpython-6f9addb5ba0729e4bd2a1919d02e55c25382e26e.tar.gz cpython-6f9addb5ba0729e4bd2a1919d02e55c25382e26e.tar.bz2 |
gh-79315: Add Include/cpython/modsupport.h header (#91797)
Diffstat (limited to 'PCbuild')
-rw-r--r-- | PCbuild/pythoncore.vcxproj | 1 | ||||
-rw-r--r-- | PCbuild/pythoncore.vcxproj.filters | 3 |
2 files changed, 4 insertions, 0 deletions
diff --git a/PCbuild/pythoncore.vcxproj b/PCbuild/pythoncore.vcxproj index cbd3936..189510a 100644 --- a/PCbuild/pythoncore.vcxproj +++ b/PCbuild/pythoncore.vcxproj @@ -156,6 +156,7 @@ <ClInclude Include="..\Include\cpython\longintrepr.h" /> <ClInclude Include="..\Include\cpython\longobject.h" /> <ClInclude Include="..\Include\cpython\methodobject.h" /> + <ClInclude Include="..\Include\cpython\modsupport.h" /> <ClInclude Include="..\Include\cpython\object.h" /> <ClInclude Include="..\Include\cpython\objimpl.h" /> <ClInclude Include="..\Include\cpython\odictobject.h" /> diff --git a/PCbuild/pythoncore.vcxproj.filters b/PCbuild/pythoncore.vcxproj.filters index 70af305..1ed52a7 100644 --- a/PCbuild/pythoncore.vcxproj.filters +++ b/PCbuild/pythoncore.vcxproj.filters @@ -402,6 +402,9 @@ <ClInclude Include="..\Include\cpython\methodobject.h"> <Filter>Include\cpython</Filter> </ClInclude> + <ClInclude Include="..\Include\cpython\modsupport.h"> + <Filter>Include\cpython</Filter> + </ClInclude> <ClInclude Include="..\Include\cpython\objimpl.h"> <Filter>Include\cpython</Filter> </ClInclude> |