Fixed problem in VS solution if spaces are in the solution path
This commit is contained in:
parent
48c3d02fc3
commit
d500f50670
|
@ -252,7 +252,7 @@
|
|||
<IgnoreAllDefaultLibraries>false</IgnoreAllDefaultLibraries>
|
||||
</Link>
|
||||
<PostBuildEvent>
|
||||
<Command>xcopy $(SolutionDir)cfg $(OutDir)cfg /E /I /D /Y</Command>
|
||||
<Command>xcopy "$(SolutionDir)cfg" "$(OutDir)cfg" /E /I /D /Y</Command>
|
||||
</PostBuildEvent>
|
||||
</ItemDefinitionGroup>
|
||||
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Debug-PCRE|Win32'">
|
||||
|
@ -273,7 +273,7 @@
|
|||
<SuppressStartupBanner>true</SuppressStartupBanner>
|
||||
</Link>
|
||||
<PostBuildEvent>
|
||||
<Command>xcopy $(SolutionDir)cfg $(OutDir)cfg /E /I /D /Y</Command>
|
||||
<Command>xcopy "$(SolutionDir)cfg" "$(OutDir)cfg" /E /I /D /Y</Command>
|
||||
</PostBuildEvent>
|
||||
</ItemDefinitionGroup>
|
||||
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">
|
||||
|
@ -293,7 +293,7 @@
|
|||
<SuppressStartupBanner>true</SuppressStartupBanner>
|
||||
</Link>
|
||||
<PostBuildEvent>
|
||||
<Command>xcopy $(SolutionDir)cfg $(OutDir)cfg /E /I /D /Y</Command>
|
||||
<Command>xcopy "$(SolutionDir)cfg" "$(OutDir)cfg" /E /I /D /Y</Command>
|
||||
</PostBuildEvent>
|
||||
</ItemDefinitionGroup>
|
||||
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Debug-PCRE|x64'">
|
||||
|
@ -314,7 +314,7 @@
|
|||
<SuppressStartupBanner>true</SuppressStartupBanner>
|
||||
</Link>
|
||||
<PostBuildEvent>
|
||||
<Command>xcopy $(SolutionDir)cfg $(OutDir)cfg /E /I /D /Y</Command>
|
||||
<Command>xcopy "$(SolutionDir)cfg" "$(OutDir)cfg" /E /I /D /Y</Command>
|
||||
</PostBuildEvent>
|
||||
</ItemDefinitionGroup>
|
||||
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">
|
||||
|
@ -343,7 +343,7 @@
|
|||
<SetChecksum>true</SetChecksum>
|
||||
</Link>
|
||||
<PostBuildEvent>
|
||||
<Command>xcopy $(SolutionDir)cfg $(OutDir)cfg /E /I /D /Y</Command>
|
||||
<Command>xcopy "$(SolutionDir)cfg" "$(OutDir)cfg" /E /I /D /Y</Command>
|
||||
</PostBuildEvent>
|
||||
</ItemDefinitionGroup>
|
||||
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Release-PCRE|Win32'">
|
||||
|
@ -373,7 +373,7 @@
|
|||
<SetChecksum>true</SetChecksum>
|
||||
</Link>
|
||||
<PostBuildEvent>
|
||||
<Command>xcopy $(SolutionDir)cfg $(OutDir)cfg /E /I /D /Y</Command>
|
||||
<Command>xcopy "$(SolutionDir)cfg" "$(OutDir)cfg" /E /I /D /Y</Command>
|
||||
</PostBuildEvent>
|
||||
</ItemDefinitionGroup>
|
||||
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'">
|
||||
|
@ -402,7 +402,7 @@
|
|||
<SetChecksum>true</SetChecksum>
|
||||
</Link>
|
||||
<PostBuildEvent>
|
||||
<Command>xcopy $(SolutionDir)cfg $(OutDir)cfg /E /I /D /Y</Command>
|
||||
<Command>xcopy "$(SolutionDir)cfg" "$(OutDir)cfg" /E /I /D /Y</Command>
|
||||
</PostBuildEvent>
|
||||
</ItemDefinitionGroup>
|
||||
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Release-PCRE|x64'">
|
||||
|
@ -432,7 +432,7 @@
|
|||
<SetChecksum>true</SetChecksum>
|
||||
</Link>
|
||||
<PostBuildEvent>
|
||||
<Command>xcopy $(SolutionDir)cfg $(OutDir)cfg /E /I /D /Y</Command>
|
||||
<Command>xcopy "$(SolutionDir)cfg" "$(OutDir)cfg" /E /I /D /Y</Command>
|
||||
</PostBuildEvent>
|
||||
</ItemDefinitionGroup>
|
||||
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.targets" />
|
||||
|
|
Loading…
Reference in New Issue