DEPLOYMENT_REMOTE_DIRECTORY.rst 617 B

123456789101112131415161718
  1. DEPLOYMENT_REMOTE_DIRECTORY
  2. ---------------------------
  3. Set the WinCE project ``RemoteDirectory`` in ``DeploymentTool`` and
  4. ``RemoteExecutable`` in ``DebuggerTool`` in ``.vcproj`` files generated
  5. by the :generator:`Visual Studio 9 2008` and :generator:`Visual Studio 8 2005`
  6. generators. This is useful when you want to debug on remote WinCE device.
  7. For example:
  8. .. code-block:: cmake
  9. set_property(TARGET ${TARGET} PROPERTY
  10. DEPLOYMENT_REMOTE_DIRECTORY "\\FlashStorage")
  11. produces::
  12. <DeploymentTool RemoteDirectory="\FlashStorage" ... />
  13. <DebuggerTool RemoteExecutable="\FlashStorage\target_file" ... />