diff options
author | Zachary Ware <zachary.ware@gmail.com> | 2018-02-11 16:43:48 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-02-11 16:43:48 (GMT) |
commit | 310b05289b5d9550040f469e60b5e8e77f1022b6 (patch) | |
tree | 0d8e6ac41aa4362fb91991b3e680c094b2676294 /PCbuild/pythoncore.vcxproj | |
parent | 136c8e07955392676680c8e29ab96017127b6672 (diff) | |
download | cpython-310b05289b5d9550040f469e60b5e8e77f1022b6.zip cpython-310b05289b5d9550040f469e60b5e8e77f1022b6.tar.gz cpython-310b05289b5d9550040f469e60b5e8e77f1022b6.tar.bz2 |
bpo-32604: Make _xxsubinterpreters build on Windows (GH-5516)
This is not the ideal solution; this means that a test module is now
always included in the main python3x.dll. However, we're already
including xxsubtype, so why not?
Diffstat (limited to 'PCbuild/pythoncore.vcxproj')
-rw-r--r-- | PCbuild/pythoncore.vcxproj | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/PCbuild/pythoncore.vcxproj b/PCbuild/pythoncore.vcxproj index f309455..bf4131e 100644 --- a/PCbuild/pythoncore.vcxproj +++ b/PCbuild/pythoncore.vcxproj @@ -279,6 +279,7 @@ <ClCompile Include="..\Modules\_tracemalloc.c" /> <ClCompile Include="..\Modules\timemodule.c" /> <ClCompile Include="..\Modules\xxsubtype.c" /> + <ClCompile Include="..\Modules\_xxsubinterpretersmodule.c" /> <ClCompile Include="..\Modules\zipimport.c" /> <ClCompile Include="..\Modules\_io\fileio.c" /> <ClCompile Include="..\Modules\_io\bytesio.c" /> |