Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit 6ed63f3

Browse files
committed
Fixes default intermediate directory when building on Windows.
1 parent df450d1 commit 6ed63f3

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

PCbuild/pyproject.props

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<VisualStudioVersion Condition="'$(VisualStudioVersion)' == ''">10.0</VisualStudioVersion>
66
<OutDir>$(BuildPath)</OutDir>
77
<OutDir Condition="!HasTrailingSlash($(OutDir))">$(OutDir)\</OutDir>
8-
<Py_IntDir Condition="'$(PyIntDir)' == ''">$(SolutionDir)obj\</Py_IntDir>
8+
<Py_IntDir Condition="'$(Py_IntDir)' == ''">$(MSBuildThisFileDirectory)obj\</Py_IntDir>
99
<IntDir>$(Py_IntDir)\$(ArchName)_$(Configuration)\$(ProjectName)\</IntDir>
1010
<IntDir Condition="$(Configuration) == 'PGInstrument' or $(Configuration) == 'PGUpdate'">$(Py_IntDir)\$(ArchName)_PGO\$(ProjectName)\</IntDir>
1111
<TargetName Condition="'$(TargetName)' == ''">$(ProjectName)</TargetName>

0 commit comments

Comments
 (0)