DEPLOYMENT_REMOTE_DIRECTORY

在 3.6 版本加入.

在 Visual Studio 9 2008 生成器生成的 .vcproj 文件中的 DeploymentTool 中设置 WinCE 项目 RemoteDirectoryDebuggerTool 中的 RemoteExecutable。当您想在远程 WinCE 设备上进行调试时,这很有用。例如:

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

产生::

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