[Python-checkins] cpython: Issue #16113: compile the module on Windows, too.

christian.heimes python-checkins at python.org
Wed Sep 7 06:52:07 EDT 2016


https://hg.python.org/cpython/rev/e8884dcace9f
changeset:   103219:e8884dcace9f
user:        Christian Heimes <christian at python.org>
date:        Wed Sep 07 12:51:56 2016 +0200
summary:
  Issue #16113: compile the module on Windows, too.

files:
  PCbuild/pythoncore.vcxproj         |  1 +
  PCbuild/pythoncore.vcxproj.filters |  3 +++
  2 files changed, 4 insertions(+), 0 deletions(-)


diff --git a/PCbuild/pythoncore.vcxproj b/PCbuild/pythoncore.vcxproj
--- 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
--- 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>

-- 
Repository URL: https://hg.python.org/cpython


More information about the Python-checkins mailing list