diff options
author | Zachary Ware <zachary.ware@gmail.com> | 2013-12-11 23:21:13 (GMT) |
---|---|---|
committer | Zachary Ware <zachary.ware@gmail.com> | 2013-12-11 23:21:13 (GMT) |
commit | f06247d16a7210cb5c8645d7244dd45a08ccc834 (patch) | |
tree | 7b10328d6eb1c4942fe87c0791bad15ce3805880 | |
parent | e2ed78ed31586acfb09987253b9fc71573262c10 (diff) | |
download | cpython-f06247d16a7210cb5c8645d7244dd45a08ccc834.zip cpython-f06247d16a7210cb5c8645d7244dd45a08ccc834.tar.gz cpython-f06247d16a7210cb5c8645d7244dd45a08ccc834.tar.bz2 |
Properly filter some recent additions in the Windows build files.
-rw-r--r-- | PCbuild/_overlapped.vcxproj.filters | 13 | ||||
-rw-r--r-- | PCbuild/_sha3.vcxproj.filters | 13 | ||||
-rw-r--r-- | PCbuild/pythoncore.vcxproj.filters | 20 |
3 files changed, 44 insertions, 2 deletions
diff --git a/PCbuild/_overlapped.vcxproj.filters b/PCbuild/_overlapped.vcxproj.filters new file mode 100644 index 0000000..78de895 --- /dev/null +++ b/PCbuild/_overlapped.vcxproj.filters @@ -0,0 +1,13 @@ +<?xml version="1.0" encoding="utf-8"?> +<Project ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003"> + <ItemGroup> + <Filter Include="Source Files"> + <UniqueIdentifier>{6f67c8db-7de7-4714-a967-2b0d4bc71f2e}</UniqueIdentifier> + </Filter> + </ItemGroup> + <ItemGroup> + <ClCompile Include="..\Modules\overlapped.c"> + <Filter>Source Files</Filter> + </ClCompile> + </ItemGroup> +</Project>
\ No newline at end of file diff --git a/PCbuild/_sha3.vcxproj.filters b/PCbuild/_sha3.vcxproj.filters new file mode 100644 index 0000000..da55fc3 --- /dev/null +++ b/PCbuild/_sha3.vcxproj.filters @@ -0,0 +1,13 @@ +<?xml version="1.0" encoding="utf-8"?> +<Project ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003"> + <ItemGroup> + <Filter Include="Source Files"> + <UniqueIdentifier>{f1f1fd19-4f85-4a56-be41-af14f0bc2a9c}</UniqueIdentifier> + </Filter> + </ItemGroup> + <ItemGroup> + <ClCompile Include="..\Modules\_sha3\sha3module.c"> + <Filter>Source Files</Filter> + </ClCompile> + </ItemGroup> +</Project>
\ No newline at end of file diff --git a/PCbuild/pythoncore.vcxproj.filters b/PCbuild/pythoncore.vcxproj.filters index 41fe1b2..8c65247 100644 --- a/PCbuild/pythoncore.vcxproj.filters +++ b/PCbuild/pythoncore.vcxproj.filters @@ -414,7 +414,6 @@ <ClInclude Include="..\Python\thread_nt.h"> <Filter>Python</Filter> </ClInclude> - <ClInclude Include="..\Include\namespaceobject.h" /> <ClInclude Include="..\Python\condvar.h"> <Filter>Python</Filter> </ClInclude> @@ -424,6 +423,12 @@ <ClInclude Include="..\Include\pyhash.h"> <Filter>Include</Filter> </ClInclude> + <ClInclude Include="..\Include\namespaceobject.h"> + <Filter>Include</Filter> + </ClInclude> + <ClInclude Include="..\Modules\hashtable.h"> + <Filter>Modules</Filter> + </ClInclude> </ItemGroup> <ItemGroup> <ClCompile Include="..\Modules\_bisectmodule.c"> @@ -930,13 +935,24 @@ <ClCompile Include="..\Modules\_winapi.c"> <Filter>PC</Filter> </ClCompile> - <ClCompile Include="..\Objects\namespaceobject.c" /> <ClCompile Include="..\Modules\_stat.c"> <Filter>Modules</Filter> </ClCompile> <ClCompile Include="..\Python\pyhash.c"> <Filter>Python</Filter> </ClCompile> + <ClCompile Include="..\Objects\namespaceobject.c"> + <Filter>Objects</Filter> + </ClCompile> + <ClCompile Include="..\Modules\_opcode.c"> + <Filter>Modules</Filter> + </ClCompile> + <ClCompile Include="..\Modules\_tracemalloc.c"> + <Filter>Modules</Filter> + </ClCompile> + <ClCompile Include="..\Modules\hashtable.c"> + <Filter>Modules</Filter> + </ClCompile> </ItemGroup> <ItemGroup> <ResourceCompile Include="..\PC\python_nt.rc"> |