summaryrefslogtreecommitdiff
path: root/PCbuild
diff options
context:
space:
mode:
authorINADA Naoki <songofacandy@gmail.com>2016-10-09 14:51:36 +0900
committerINADA Naoki <songofacandy@gmail.com>2016-10-09 14:51:36 +0900
commita30fd47c69ad06171ace6ff1fa01cbb0a8d63aae (patch)
tree74d054c76c4c336f7194ed9137e704b77d9a94f3 /PCbuild
parentd412bea91593c7bffc86d492725de8814d33f702 (diff)
parent553d3108ffde8deed850a944a66a344c2fb14fd2 (diff)
downloadcpython-a30fd47c69ad06171ace6ff1fa01cbb0a8d63aae.tar.gz
Issue #26801: Added C implementation of asyncio.Future.
Original patch by Yury Selivanov.
Diffstat (limited to 'PCbuild')
-rw-r--r--PCbuild/pythoncore.vcxproj1
-rw-r--r--PCbuild/pythoncore.vcxproj.filters3
2 files changed, 4 insertions, 0 deletions
diff --git a/PCbuild/pythoncore.vcxproj b/PCbuild/pythoncore.vcxproj
index 769c643657..1507adbf4a 100644
--- a/PCbuild/pythoncore.vcxproj
+++ b/PCbuild/pythoncore.vcxproj
@@ -221,6 +221,7 @@
<ClCompile Include="..\Modules\_collectionsmodule.c" />
<ClCompile Include="..\Modules\_csv.c" />
<ClCompile Include="..\Modules\_functoolsmodule.c" />
+ <ClCompile Include="..\Modules\_futuresmodule.c" />
<ClCompile Include="..\Modules\_heapqmodule.c" />
<ClCompile Include="..\Modules\_json.c" />
<ClCompile Include="..\Modules\_localemodule.c" />
diff --git a/PCbuild/pythoncore.vcxproj.filters b/PCbuild/pythoncore.vcxproj.filters
index 5eb4275cc1..ef2433322d 100644
--- a/PCbuild/pythoncore.vcxproj.filters
+++ b/PCbuild/pythoncore.vcxproj.filters
@@ -470,6 +470,9 @@
<ClCompile Include="..\Modules\_functoolsmodule.c">
<Filter>Modules</Filter>
</ClCompile>
+ <ClCompile Include="..\Modules\_futuresmodule.c">
+ <Filter>Modules</Filter>
+ </ClCompile>
<ClCompile Include="..\Modules\_heapqmodule.c">
<Filter>Modules</Filter>
</ClCompile>