summaryrefslogtreecommitdiff
path: root/cryptest.vcxproj
diff options
context:
space:
mode:
authorJeffrey Walton <noloader@gmail.com>2019-08-05 13:27:54 -0400
committerJeffrey Walton <noloader@gmail.com>2019-08-05 13:27:54 -0400
commita01711e347df30a994609537ce9be2926a366a44 (patch)
tree774a56be824daaad9c0246c1d37ea14c43448e28 /cryptest.vcxproj
parentc9ef9420e762b91cc06463d349cf06e04c749b9d (diff)
downloadcryptopp-git-a01711e347df30a994609537ce9be2926a366a44.tar.gz
Fix CopyToRoot target with spaces in path
Diffstat (limited to 'cryptest.vcxproj')
-rw-r--r--cryptest.vcxproj5
1 files changed, 4 insertions, 1 deletions
diff --git a/cryptest.vcxproj b/cryptest.vcxproj
index 2ac87d9a..90ef23ea 100644
--- a/cryptest.vcxproj
+++ b/cryptest.vcxproj
@@ -195,7 +195,10 @@
<!-- The rule copies cryptest.exe to the project -->
<!-- root directory so it can be executed in place -->
<Target Name="CopyCryptestToRoot">
- <Exec Command="copy $(Platform)\Output\$(Configuration)\cryptest.exe $(SolutionDir)" />
+ <Exec Command="copy &quot;$(Platform)\Output\$(Configuration)\cryptest.exe&quot; &quot;$(SolutionDir)&quot;" />
+ </Target>
+ <Target Name="CopyToRoot">
+ <Exec Command="copy &quot;$(Platform)\Output\$(Configuration)\cryptest.exe&quot; &quot;$(SolutionDir)&quot;" />
</Target>
<!-- Source Files -->
<ItemGroup>