diff options
author | Nick Coghlan <ncoghlan@gmail.com> | 2014-07-25 11:52:14 (GMT) |
---|---|---|
committer | Nick Coghlan <ncoghlan@gmail.com> | 2014-07-25 11:52:14 (GMT) |
commit | 973fe0ba7adb081b81f319b924f9bbb50b2b1345 (patch) | |
tree | 5b386540c29cbf34abbceb101c13377ae3760c71 /PCbuild | |
parent | d6766ae434fd09130863af913a8193641e51b91c (diff) | |
download | cpython-973fe0ba7adb081b81f319b924f9bbb50b2b1345.zip cpython-973fe0ba7adb081b81f319b924f9bbb50b2b1345.tar.gz cpython-973fe0ba7adb081b81f319b924f9bbb50b2b1345.tar.bz2 |
Issue #18093: Factor out the programs that embed the runtime
Diffstat (limited to 'PCbuild')
-rw-r--r-- | PCbuild/_freeze_importlib.vcxproj | 4 | ||||
-rw-r--r-- | PCbuild/_freeze_importlib.vcxproj.filters | 4 | ||||
-rw-r--r-- | PCbuild/python.vcxproj | 2 | ||||
-rw-r--r-- | PCbuild/python.vcxproj.filters | 4 |
4 files changed, 7 insertions, 7 deletions
diff --git a/PCbuild/_freeze_importlib.vcxproj b/PCbuild/_freeze_importlib.vcxproj index 55197af..e133e02 100644 --- a/PCbuild/_freeze_importlib.vcxproj +++ b/PCbuild/_freeze_importlib.vcxproj @@ -167,7 +167,7 @@ </PostBuildEvent> </ItemDefinitionGroup> <ItemGroup> - <ClCompile Include="..\Modules\_freeze_importlib.c" /> + <ClCompile Include="..\Programs\_freeze_importlib.c" /> </ItemGroup> <ItemGroup> <ProjectReference Include="pythoncore.vcxproj"> @@ -185,4 +185,4 @@ <Import Project="$(VCTargetsPath)\Microsoft.Cpp.targets" /> <ImportGroup Label="ExtensionTargets"> </ImportGroup> -</Project>
\ No newline at end of file +</Project> diff --git a/PCbuild/_freeze_importlib.vcxproj.filters b/PCbuild/_freeze_importlib.vcxproj.filters index 50ec193..ccad053 100644 --- a/PCbuild/_freeze_importlib.vcxproj.filters +++ b/PCbuild/_freeze_importlib.vcxproj.filters @@ -15,7 +15,7 @@ </Filter> </ItemGroup> <ItemGroup> - <ClCompile Include="..\Modules\_freeze_importlib.c"> + <ClCompile Include="..\Programs\_freeze_importlib.c"> <Filter>Source Files</Filter> </ClCompile> </ItemGroup> @@ -24,4 +24,4 @@ <Filter>Source Files</Filter> </None> </ItemGroup> -</Project>
\ No newline at end of file +</Project> diff --git a/PCbuild/python.vcxproj b/PCbuild/python.vcxproj index 5387343..6cb4ef5 100644 --- a/PCbuild/python.vcxproj +++ b/PCbuild/python.vcxproj @@ -510,7 +510,7 @@ echo @"$(OutDir)python$(PyDebugExt).exe" %%*>> "$(SolutionDir)..\python.ba <ResourceCompile Include="..\PC\python_exe.rc" /> </ItemGroup> <ItemGroup> - <ClCompile Include="..\Modules\python.c" /> + <ClCompile Include="..\Programs\python.c" /> </ItemGroup> <ItemGroup> <ProjectReference Include="pythoncore.vcxproj"> diff --git a/PCbuild/python.vcxproj.filters b/PCbuild/python.vcxproj.filters index e4906a4..0662a4e 100644 --- a/PCbuild/python.vcxproj.filters +++ b/PCbuild/python.vcxproj.filters @@ -19,8 +19,8 @@ </ResourceCompile> </ItemGroup> <ItemGroup> - <ClCompile Include="..\Modules\python.c"> + <ClCompile Include="..\Programs\python.c"> <Filter>Source Files</Filter> </ClCompile> </ItemGroup> -</Project>
\ No newline at end of file +</Project> |