DEPLOYMENT_REMOTE_DIRECTORY

3.6 版本新增。

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

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

生成

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