Skip to content
This repository has been archived by the owner on Dec 25, 2023. It is now read-only.

Commit

Permalink
Fix for source directory containing spaces resulting in failure of po…
Browse files Browse the repository at this point in the history
…st-build step.
  • Loading branch information
allenhux-intel committed Nov 10, 2022
1 parent f5db2d6 commit 58e21e7
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 8 deletions.
8 changes: 4 additions & 4 deletions DdsToXet/DdsToXet.vcxproj
Original file line number Diff line number Diff line change
Expand Up @@ -65,8 +65,8 @@
<GenerateDebugInformation>true</GenerateDebugInformation>
</Link>
<PostBuildEvent>
<Command>cd /d $(TargetDir)
convert.bat $(SolutionDir)dds media</Command>
<Command>cd /d "$(TargetDir)"
convert.bat "$(SolutionDir)dds" media</Command>
</PostBuildEvent>
</ItemDefinitionGroup>
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'">
Expand All @@ -86,8 +86,8 @@ convert.bat $(SolutionDir)dds media</Command>
<GenerateDebugInformation>true</GenerateDebugInformation>
</Link>
<PostBuildEvent>
<Command>cd /d $(TargetDir)
convert.bat $(SolutionDir)dds media</Command>
<Command>cd /d "$(TargetDir)"
convert.bat "$(SolutionDir)dds" media</Command>
</PostBuildEvent>
</ItemDefinitionGroup>
<ItemGroup>
Expand Down
8 changes: 4 additions & 4 deletions DdsToXet/DdsToXet_vs2022.vcxproj
Original file line number Diff line number Diff line change
Expand Up @@ -65,8 +65,8 @@
<GenerateDebugInformation>true</GenerateDebugInformation>
</Link>
<PostBuildEvent>
<Command>cd /d $(TargetDir)
convert.bat $(SolutionDir)dds media</Command>
<Command>cd /d "$(TargetDir)"
convert.bat "$(SolutionDir)dds" media</Command>
</PostBuildEvent>
</ItemDefinitionGroup>
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'">
Expand All @@ -86,8 +86,8 @@ convert.bat $(SolutionDir)dds media</Command>
<GenerateDebugInformation>true</GenerateDebugInformation>
</Link>
<PostBuildEvent>
<Command>cd /d $(TargetDir)
convert.bat $(SolutionDir)dds media</Command>
<Command>cd /d "$(TargetDir)"
convert.bat "$(SolutionDir)dds" media</Command>
</PostBuildEvent>
</ItemDefinitionGroup>
<ItemGroup>
Expand Down

0 comments on commit 58e21e7

Please sign in to comment.