diff options
author | Christian Heimes <christian@python.org> | 2016-09-07 10:51:56 (GMT) |
---|---|---|
committer | Christian Heimes <christian@python.org> | 2016-09-07 10:51:56 (GMT) |
commit | 393b82e4c165e7f766560965d528b54fb9c99391 (patch) | |
tree | a9b69ed933fbf0fa615664f8d78f228900105ed5 /PCbuild | |
parent | b205fe9791d780b0bdb88492eeaa71348e1d6957 (diff) | |
download | cpython-393b82e4c165e7f766560965d528b54fb9c99391.zip cpython-393b82e4c165e7f766560965d528b54fb9c99391.tar.gz cpython-393b82e4c165e7f766560965d528b54fb9c99391.tar.bz2 |
Issue #16113: compile the module on Windows, too.
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 68b216e..cab517e 100644 --- a/PCbuild/pythoncore.vcxproj +++ b/PCbuild/pythoncore.vcxproj @@ -228,6 +228,7 @@ <ClCompile Include="..\Modules\_math.c" /> <ClCompile Include="..\Modules\_pickle.c" /> <ClCompile Include="..\Modules\_randommodule.c" /> + <ClCompile Include="..\Modules\_sha3\sha3module.c" /> <ClCompile Include="..\Modules\_sre.c" /> <ClCompile Include="..\Modules\_stat.c" /> <ClCompile Include="..\Modules\_struct.c" /> diff --git a/PCbuild/pythoncore.vcxproj.filters b/PCbuild/pythoncore.vcxproj.filters index 8e3ccf8..405974d 100644 --- a/PCbuild/pythoncore.vcxproj.filters +++ b/PCbuild/pythoncore.vcxproj.filters @@ -491,6 +491,9 @@ <ClCompile Include="..\Modules\_randommodule.c"> <Filter>Modules</Filter> </ClCompile> + <ClCompile Include="..\Modules\_sha3\sha3module.c"> + <Filter>Modules</Filter> + </ClCompile> <ClCompile Include="..\Modules\_sre.c"> <Filter>Modules</Filter> </ClCompile> |