From 1b3aa3f021baec71c6b3ceed174310e4229cdfbb Mon Sep 17 00:00:00 2001 From: Petr Benes Date: Wed, 19 Jun 2019 21:32:09 +0200 Subject: [PATCH] fix postbuild copy command (missing quotes) --- Source/pdbex.vcxproj | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/Source/pdbex.vcxproj b/Source/pdbex.vcxproj index 3519fcb..717ae9b 100644 --- a/Source/pdbex.vcxproj +++ b/Source/pdbex.vcxproj @@ -104,8 +104,8 @@ true - copy $(SolutionDir)Library\$(PlatformTarget)\msdia140.dll $(OutDir) -copy $(SolutionDir)Library\$(PlatformTarget)\symsrv.dll $(OutDir) + copy "$(SolutionDir)Library\$(PlatformTarget)\msdia140.dll" "$(OutDir)" +copy "$(SolutionDir)Library\$(PlatformTarget)\symsrv.dll" "$(OutDir)" @@ -123,8 +123,8 @@ copy $(SolutionDir)Library\$(PlatformTarget)\symsrv.dll $(OutDir) true - copy $(SolutionDir)Library\$(PlatformTarget)\msdia140.dll $(OutDir) -copy $(SolutionDir)Library\$(PlatformTarget)\symsrv.dll $(OutDir) + copy "$(SolutionDir)Library\$(PlatformTarget)\msdia140.dll" "$(OutDir)" +copy "$(SolutionDir)Library\$(PlatformTarget)\symsrv.dll" "$(OutDir)" @@ -147,8 +147,8 @@ copy $(SolutionDir)Library\$(PlatformTarget)\symsrv.dll $(OutDir) true - copy $(SolutionDir)Library\$(PlatformTarget)\msdia140.dll $(OutDir) -copy $(SolutionDir)Library\$(PlatformTarget)\symsrv.dll $(OutDir) + copy "$(SolutionDir)Library\$(PlatformTarget)\msdia140.dll" "$(OutDir)" +copy "$(SolutionDir)Library\$(PlatformTarget)\symsrv.dll" "$(OutDir)" @@ -171,8 +171,8 @@ copy $(SolutionDir)Library\$(PlatformTarget)\symsrv.dll $(OutDir) true - copy $(SolutionDir)Library\$(PlatformTarget)\msdia140.dll $(OutDir) -copy $(SolutionDir)Library\$(PlatformTarget)\symsrv.dll $(OutDir) + copy "$(SolutionDir)Library\$(PlatformTarget)\msdia140.dll" "$(OutDir)" +copy "$(SolutionDir)Library\$(PlatformTarget)\symsrv.dll" "$(OutDir)"