summaryrefslogtreecommitdiffstats
path: root/PCbuild
diff options
context:
space:
mode:
authorSteve Dower <steve.dower@microsoft.com>2014-11-21 00:45:36 (GMT)
committerSteve Dower <steve.dower@microsoft.com>2014-11-21 00:45:36 (GMT)
commit8314690a26501b3693f9a1f18c85f240a6c973bb (patch)
tree171cfd664efcbeb38f866258ac69e0c0182d4d79 /PCbuild
parentb1e36073cdde71468efa27e88016aa6dd46f3ec7 (diff)
downloadcpython-8314690a26501b3693f9a1f18c85f240a6c973bb.zip
cpython-8314690a26501b3693f9a1f18c85f240a6c973bb.tar.gz
cpython-8314690a26501b3693f9a1f18c85f240a6c973bb.tar.bz2
Issue #22869: Add pylifecycle.c/.h files to pythoncore project.
Diffstat (limited to 'PCbuild')
-rw-r--r--PCbuild/pythoncore.vcxproj2
-rw-r--r--PCbuild/pythoncore.vcxproj.filters6
2 files changed, 8 insertions, 0 deletions
diff --git a/PCbuild/pythoncore.vcxproj b/PCbuild/pythoncore.vcxproj
index 1ad16fb..3cce88e 100644
--- a/PCbuild/pythoncore.vcxproj
+++ b/PCbuild/pythoncore.vcxproj
@@ -502,6 +502,7 @@ IF %ERRORLEVEL% NEQ 0 (
<ClInclude Include="..\Include\pyexpat.h" />
<ClInclude Include="..\Include\pyfpe.h" />
<ClInclude Include="..\Include\pygetopt.h" />
+ <ClInclude Include="..\Include\pylifecycle.h" />
<ClInclude Include="..\Include\pymath.h" />
<ClInclude Include="..\Include\pytime.h" />
<ClInclude Include="..\Include\pymacro.h" />
@@ -734,6 +735,7 @@ IF %ERRORLEVEL% NEQ 0 (
<ClCompile Include="..\Python\pyarena.c" />
<ClCompile Include="..\Python\pyctype.c" />
<ClCompile Include="..\Python\pyfpe.c" />
+ <ClCompile Include="..\Python\pylifecycle.c" />
<ClCompile Include="..\Python\pymath.c" />
<ClCompile Include="..\Python\pytime.c" />
<ClCompile Include="..\Python\pystate.c" />
diff --git a/PCbuild/pythoncore.vcxproj.filters b/PCbuild/pythoncore.vcxproj.filters
index 8c65247..174140a 100644
--- a/PCbuild/pythoncore.vcxproj.filters
+++ b/PCbuild/pythoncore.vcxproj.filters
@@ -216,6 +216,9 @@
<ClInclude Include="..\Include\pygetopt.h">
<Filter>Include</Filter>
</ClInclude>
+ <ClInclude Include="..\Include\pylifecycle.h">
+ <Filter>Include</Filter>
+ </ClInclude>
<ClInclude Include="..\Include\pymath.h">
<Filter>Include</Filter>
</ClInclude>
@@ -890,6 +893,9 @@
<ClCompile Include="..\Python\pyfpe.c">
<Filter>Python</Filter>
</ClCompile>
+ <ClCompile Include="..\Python\pylifecycle.c">
+ <Filter>Python</Filter>
+ </ClCompile>
<ClCompile Include="..\Python\pymath.c">
<Filter>Python</Filter>
</ClCompile>