Skip to content

Commit

Permalink
fix postbuild copy command (missing quotes)
Browse files Browse the repository at this point in the history
  • Loading branch information
wbenny committed Jun 19, 2019
1 parent 67545bc commit 1b3aa3f
Showing 1 changed file with 8 additions and 8 deletions.
16 changes: 8 additions & 8 deletions Source/pdbex.vcxproj
Original file line number Diff line number Diff line change
Expand Up @@ -104,8 +104,8 @@
<GenerateDebugInformation>true</GenerateDebugInformation>
</Link>
<PostBuildEvent>
<Command>copy $(SolutionDir)Library\$(PlatformTarget)\msdia140.dll $(OutDir)
copy $(SolutionDir)Library\$(PlatformTarget)\symsrv.dll $(OutDir)</Command>
<Command>copy "$(SolutionDir)Library\$(PlatformTarget)\msdia140.dll" "$(OutDir)"
copy "$(SolutionDir)Library\$(PlatformTarget)\symsrv.dll" "$(OutDir)"</Command>
</PostBuildEvent>
</ItemDefinitionGroup>
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">
Expand All @@ -123,8 +123,8 @@ copy $(SolutionDir)Library\$(PlatformTarget)\symsrv.dll $(OutDir)</Command>
<GenerateDebugInformation>true</GenerateDebugInformation>
</Link>
<PostBuildEvent>
<Command>copy $(SolutionDir)Library\$(PlatformTarget)\msdia140.dll $(OutDir)
copy $(SolutionDir)Library\$(PlatformTarget)\symsrv.dll $(OutDir)</Command>
<Command>copy "$(SolutionDir)Library\$(PlatformTarget)\msdia140.dll" "$(OutDir)"
copy "$(SolutionDir)Library\$(PlatformTarget)\symsrv.dll" "$(OutDir)"</Command>
</PostBuildEvent>
</ItemDefinitionGroup>
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">
Expand All @@ -147,8 +147,8 @@ copy $(SolutionDir)Library\$(PlatformTarget)\symsrv.dll $(OutDir)</Command>
<OptimizeReferences>true</OptimizeReferences>
</Link>
<PostBuildEvent>
<Command>copy $(SolutionDir)Library\$(PlatformTarget)\msdia140.dll $(OutDir)
copy $(SolutionDir)Library\$(PlatformTarget)\symsrv.dll $(OutDir)</Command>
<Command>copy "$(SolutionDir)Library\$(PlatformTarget)\msdia140.dll" "$(OutDir)"
copy "$(SolutionDir)Library\$(PlatformTarget)\symsrv.dll" "$(OutDir)"</Command>
</PostBuildEvent>
</ItemDefinitionGroup>
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'">
Expand All @@ -171,8 +171,8 @@ copy $(SolutionDir)Library\$(PlatformTarget)\symsrv.dll $(OutDir)</Command>
<OptimizeReferences>true</OptimizeReferences>
</Link>
<PostBuildEvent>
<Command>copy $(SolutionDir)Library\$(PlatformTarget)\msdia140.dll $(OutDir)
copy $(SolutionDir)Library\$(PlatformTarget)\symsrv.dll $(OutDir)</Command>
<Command>copy "$(SolutionDir)Library\$(PlatformTarget)\msdia140.dll" "$(OutDir)"
copy "$(SolutionDir)Library\$(PlatformTarget)\symsrv.dll" "$(OutDir)"</Command>
</PostBuildEvent>
</ItemDefinitionGroup>
<ItemGroup>
Expand Down

0 comments on commit 1b3aa3f

Please sign in to comment.