diff options
author | Steve Dower <steve.dower@microsoft.com> | 2016-07-15 18:55:52 (GMT) |
---|---|---|
committer | Steve Dower <steve.dower@microsoft.com> | 2016-07-15 18:55:52 (GMT) |
commit | b7567c587d110723e743e7b665f53e14daa3a818 (patch) | |
tree | 3ac5fd2f163043eef1444ec8917cfc98f21a2ba1 /PCbuild | |
parent | a47a7a5bf88c72d85f322f528381ebfa924072e9 (diff) | |
download | cpython-b7567c587d110723e743e7b665f53e14daa3a818.zip cpython-b7567c587d110723e743e7b665f53e14daa3a818.tar.gz cpython-b7567c587d110723e743e7b665f53e14daa3a818.tar.bz2 |
Fix building tcl/tk with only the VC build tools installed.
Diffstat (limited to 'PCbuild')
-rw-r--r-- | PCbuild/tcl.vcxproj | 2 | ||||
-rw-r--r-- | PCbuild/tix.vcxproj | 2 | ||||
-rw-r--r-- | PCbuild/tk.vcxproj | 2 |
3 files changed, 6 insertions, 0 deletions
diff --git a/PCbuild/tcl.vcxproj b/PCbuild/tcl.vcxproj index 464c83c..3dfd155 100644 --- a/PCbuild/tcl.vcxproj +++ b/PCbuild/tcl.vcxproj @@ -88,4 +88,6 @@ nmake -f makefile.vc MACHINE=$(TclMachine) OPTS=$(TclOpts) $(TclDirs) $(DebugFla <Delete Files="$(TargetPath);$(BuildPath)$(tclDLLName)" /> <RemoveDir Directories="$(IntDir)" /> </Target> + + <Target Name="ResolveAssemblyReferences" /> </Project>
\ No newline at end of file diff --git a/PCbuild/tix.vcxproj b/PCbuild/tix.vcxproj index f857f9e..d1bc0ab 100644 --- a/PCbuild/tix.vcxproj +++ b/PCbuild/tix.vcxproj @@ -89,4 +89,6 @@ nmake /nologo -f makefile.vc MACHINE=$(TclMachine) $(DebugFlags) $(TclShortVersi <RemoveDir Directories="$(OutDir)" /> <RemoveDir Directories="$(IntDir)" /> </Target> + + <Target Name="ResolveAssemblyReferences" /> </Project>
\ No newline at end of file diff --git a/PCbuild/tk.vcxproj b/PCbuild/tk.vcxproj index 20749f7..a26318b 100644 --- a/PCbuild/tk.vcxproj +++ b/PCbuild/tk.vcxproj @@ -92,4 +92,6 @@ nmake /nologo -f makefile.vc RC=rc MACHINE=$(TclMachine) OPTS=$(TkOpts) $(TkDirs <Delete Files="$(TargetPath);$(BuildPath)$(tkDLLName)" /> <RemoveDir Directories="$(IntDir)" /> </Target> + + <Target Name="ResolveAssemblyReferences" /> </Project>
\ No newline at end of file |