DEPLOYMENT_REMOTE_DIRECTORY

在版本 3.6 中加入。

在由 Visual Studio Generators 生成的 .vcproj 文件中,设置 DeploymentTool 中的 WinCE 项目 RemoteDirectoryDebuggerTool 中的 RemoteExecutable。当您想要在远程 WinCE 设备上调试时,这非常有用。例如

set_property(TARGET ${TARGET} PROPERTY
  DEPLOYMENT_REMOTE_DIRECTORY "\\FlashStorage")

产生

<DeploymentTool RemoteDirectory="\FlashStorage" ... />
<DebuggerTool RemoteExecutable="\FlashStorage\target_file" ... />