关于在vs中添加生成命令时的注意事项
Posted mdgoogle
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了关于在vs中添加生成命令时的注意事项相关的知识,希望对你有一定的参考价值。
涉及到目录最好用双引号括起来,防止在目录含有空格或文字时发生错误。例如
del "$(SolutionDir)\..\xxxxxx\xxxx\Build\*.*" /s /q
xcopy "$(TargetDir)*.dll" "$(SolutionDir)\..\xxxxxx\xxxx\Build" /s /e /y /i
xcopy "$(TargetDir)*.exe" "$(SolutionDir)\..\xxxxxx\xxxx\Build" /s /e /y /i
以上是关于关于在vs中添加生成命令时的注意事项的主要内容,如果未能解决你的问题,请参考以下文章
关于在vs2010中编译Qt项目时出现“无法解析的外部命令”的错误