diff options
author | Victor Stinner <vstinner@python.org> | 2022-04-06 23:26:24 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-04-06 23:26:24 (GMT) |
commit | 5c4d1f6e0e192653560ae2941a6677fbf4fbd1f2 (patch) | |
tree | 82041fb366ee919667cffb184b4b8725fd74bd63 /PCbuild | |
parent | 2390b2236d4b6ea96217478221d6f7d4b4f344f8 (diff) | |
download | cpython-5c4d1f6e0e192653560ae2941a6677fbf4fbd1f2.zip cpython-5c4d1f6e0e192653560ae2941a6677fbf4fbd1f2.tar.gz cpython-5c4d1f6e0e192653560ae2941a6677fbf4fbd1f2.tar.bz2 |
bpo-35134: Add Include/cpython/setobject.h header (GH-32384)
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 1d7c08b..6e51e17 100644 --- a/PCbuild/pythoncore.vcxproj +++ b/PCbuild/pythoncore.vcxproj @@ -172,6 +172,7 @@ <ClInclude Include="..\Include\cpython\pystate.h" /> <ClInclude Include="..\Include\cpython\pythonrun.h" /> <ClInclude Include="..\Include\cpython\pytime.h" /> + <ClInclude Include="..\Include\cpython\setobject.h" /> <ClInclude Include="..\Include\cpython\sysmodule.h" /> <ClInclude Include="..\Include\cpython\traceback.h" /> <ClInclude Include="..\Include\cpython\tupleobject.h" /> diff --git a/PCbuild/pythoncore.vcxproj.filters b/PCbuild/pythoncore.vcxproj.filters index 571a7f1..5fe6a9d 100644 --- a/PCbuild/pythoncore.vcxproj.filters +++ b/PCbuild/pythoncore.vcxproj.filters @@ -459,6 +459,9 @@ <ClInclude Include="..\Include\cpython\pythonrun.h"> <Filter>Include\cpython</Filter> </ClInclude> + <ClInclude Include="..\Include\cpython\setobject.h"> + <Filter>Include\cpython</Filter> + </ClInclude> <ClInclude Include="..\Include\cpython\sysmodule.h"> <Filter>Include\cpython</Filter> </ClInclude> |