diff options
author | Richard Oudkerk <shibturn@gmail.com> | 2012-06-04 17:24:44 (GMT) |
---|---|---|
committer | Richard Oudkerk <shibturn@gmail.com> | 2012-06-04 17:24:44 (GMT) |
commit | 9650d36498d6d063e0928bea724bd9f119458b30 (patch) | |
tree | 1ecbd8933b80b8b953ed9037f1f43b32cba93521 /PCbuild | |
parent | 454a74df23f2c39e34250361184dbff68b0d5b08 (diff) | |
download | cpython-9650d36498d6d063e0928bea724bd9f119458b30.zip cpython-9650d36498d6d063e0928bea724bd9f119458b30.tar.gz cpython-9650d36498d6d063e0928bea724bd9f119458b30.tar.bz2 |
Add namespaceobject.h and namespaceobject.c to pythoncore.vcxproj
Diffstat (limited to 'PCbuild')
-rw-r--r-- | PCbuild/pythoncore.vcxproj | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/PCbuild/pythoncore.vcxproj b/PCbuild/pythoncore.vcxproj index 6c07701..e4d4c7d 100644 --- a/PCbuild/pythoncore.vcxproj +++ b/PCbuild/pythoncore.vcxproj @@ -1,4 +1,4 @@ -<?xml version="1.0" encoding="utf-8"?> +<?xml version="1.0" encoding="utf-8"?> <Project DefaultTargets="Build" ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003"> <ItemGroup Label="ProjectConfigurations"> <ProjectConfiguration Include="Debug|Win32"> @@ -402,6 +402,7 @@ <ClInclude Include="..\Include\methodobject.h" /> <ClInclude Include="..\Include\modsupport.h" /> <ClInclude Include="..\Include\moduleobject.h" /> + <ClInclude Include="..\Include\namespaceobject.h" /> <ClInclude Include="..\Include\node.h" /> <ClInclude Include="..\Include\object.h" /> <ClInclude Include="..\Include\objimpl.h" /> @@ -579,6 +580,7 @@ <ClCompile Include="..\Objects\memoryobject.c" /> <ClCompile Include="..\Objects\methodobject.c" /> <ClCompile Include="..\Objects\moduleobject.c" /> + <ClCompile Include="..\Objects\namespaceobject.c" /> <ClCompile Include="..\Objects\object.c" /> <ClCompile Include="..\Objects\obmalloc.c" /> <ClCompile Include="..\Objects\rangeobject.c" /> |