DEPLOYMENT_REMOTE_DIRECTORY¶
在版本 3.6 中新增。
設定由 Visual Studio 產生器產生的 .vcproj
檔案中,WinCE 專案的 DeploymentTool
中的 RemoteDirectory
和 DebuggerTool
中的 RemoteExecutable
。當您想要在遠端 WinCE 裝置上偵錯時,這很有用。例如
set_property(TARGET ${TARGET} PROPERTY
DEPLOYMENT_REMOTE_DIRECTORY "\\FlashStorage")
產生
<DeploymentTool RemoteDirectory="\FlashStorage" ... />
<DebuggerTool RemoteExecutable="\FlashStorage\target_file" ... />