Issue #15102: find python.exe in OutDir, not SolutionDir.

This commit is contained in:
Martin v. Löwis 2012-06-24 00:22:28 +02:00
parent 75aeaa9b18
commit f52f527c76
1 changed files with 1 additions and 1 deletions

View File

@ -2,7 +2,7 @@
<Project DefaultTargets="Build" ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<PropertyGroup Label="UserMacros">
<PyDllName>python33$(PyDebugExt)</PyDllName>
<PythonExe>$(SolutionDir)python$(PyDebugExt).exe</PythonExe>
<PythonExe>$(OutDir)python$(PyDebugExt).exe</PythonExe>
<KillPythonExe>$(OutDir)kill_python$(PyDebugExt).exe</KillPythonExe>
<externalsDir>..\..</externalsDir>
<sqlite3Dir>$(externalsDir)\sqlite-3.7.12</sqlite3Dir>