diff options
author | Steve Dower <steve.dower@python.org> | 2020-06-23 19:31:12 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-06-23 19:31:12 (GMT) |
commit | 47cd931a61146793faa44e01516bf07b0c23380c (patch) | |
tree | b722940b0e6f3980ffdb9dc2ef49eae1b8de0543 /PCbuild/pythoncore.vcxproj | |
parent | cebd43fbfd25a80404728f73edc301f9558d9410 (diff) | |
download | cpython-47cd931a61146793faa44e01516bf07b0c23380c.zip cpython-47cd931a61146793faa44e01516bf07b0c23380c.tar.gz cpython-47cd931a61146793faa44e01516bf07b0c23380c.tar.bz2 |
bpo-41089: Filters and other issues in Visual Studio projects (GH-21070)
* Add missing header files to pythoncore.
* Add missing file filters ("Resource Files" in particular) to
all projects.
* Add new sub-filters for private headers in pythoncore and
for 3rd party source files.
* Add missing _zoneinfo configurations in pcbuild.sln.
* Update bdist_wininst with the new zlib location.
Co-authored-by: Nikita Nemkin <nikita@nemkin.ru>
Diffstat (limited to 'PCbuild/pythoncore.vcxproj')
-rw-r--r-- | PCbuild/pythoncore.vcxproj | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/PCbuild/pythoncore.vcxproj b/PCbuild/pythoncore.vcxproj index b6b0cf3..2625d02 100644 --- a/PCbuild/pythoncore.vcxproj +++ b/PCbuild/pythoncore.vcxproj @@ -135,8 +135,10 @@ <ClInclude Include="..\Include\cpython\dictobject.h" /> <ClInclude Include="..\Include\cpython\fileobject.h" /> <ClInclude Include="..\Include\cpython\fileutils.h" /> + <ClInclude Include="..\Include\cpython\frameobject.h" /> <ClInclude Include="..\Include\cpython\import.h" /> <ClInclude Include="..\Include\cpython\initconfig.h" /> + <ClInclude Include="..\Include\cpython\interpreteridobject.h" /> <ClInclude Include="..\Include\cpython\listobject.h" /> <ClInclude Include="..\Include\cpython\methodobject.h" /> <ClInclude Include="..\Include\cpython\object.h" /> @@ -178,6 +180,7 @@ <ClInclude Include="..\Include\internal\pycore_context.h" /> <ClInclude Include="..\Include\internal\pycore_dtoa.h" /> <ClInclude Include="..\Include\internal\pycore_fileutils.h" /> + <ClInclude Include="..\Include\internal\pycore_gc.h" /> <ClInclude Include="..\Include\internal\pycore_getopt.h" /> <ClInclude Include="..\Include\internal\pycore_gil.h" /> <ClInclude Include="..\Include\internal\pycore_hamt.h" /> |