cmake/Help/prop_tgt/DEPLOYMENT_REMOTE_DIRECTORY.rst

21 lines
600 B
ReStructuredText
Raw Normal View History

2016-07-09 11:21:54 +02:00
DEPLOYMENT_REMOTE_DIRECTORY
---------------------------
2021-09-14 00:13:48 +02:00
.. versionadded:: 3.6
2016-07-09 11:21:54 +02:00
Set the WinCE project ``RemoteDirectory`` in ``DeploymentTool`` and
``RemoteExecutable`` in ``DebuggerTool`` in ``.vcproj`` files generated
2018-08-09 18:06:22 +02:00
by the :generator:`Visual Studio 9 2008` generator.
This is useful when you want to debug on remote WinCE device.
2016-07-09 11:21:54 +02:00
For example:
.. code-block:: cmake
set_property(TARGET ${TARGET} PROPERTY
DEPLOYMENT_REMOTE_DIRECTORY "\\FlashStorage")
produces::
<DeploymentTool RemoteDirectory="\FlashStorage" ... />
<DebuggerTool RemoteExecutable="\FlashStorage\target_file" ... />