DEPLOYMENT_REMOTE_DIRECTORY.rst 588 B

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