DEPLOYMENT_REMOTE_DIRECTORY¶
在版本 3.6 中添加。
设置 Visual Studio 生成器 生成的 .vcproj
文件中的 WinCE 项目 RemoteDirectory
(DeploymentTool
中)和 RemoteExecutable
(DebuggerTool
中)。当您想在远程 WinCE 设备上进行调试时,这很有用。例如
set_property(TARGET ${TARGET} PROPERTY
DEPLOYMENT_REMOTE_DIRECTORY "\\FlashStorage")
生成
<DeploymentTool RemoteDirectory="\FlashStorage" ... />
<DebuggerTool RemoteExecutable="\FlashStorage\target_file" ... />