cmake/Help/prop_tgt/DEPLOYMENT_ADDITIONAL_FILES.rst

21 lines
675 B
ReStructuredText
Raw Normal View History

2018-10-28 12:09:07 +01:00
DEPLOYMENT_ADDITIONAL_FILES
---------------------------
2021-09-14 00:13:48 +02:00
.. versionadded:: 3.13
2018-10-28 12:09:07 +01:00
Set the WinCE project ``AdditionalFiles`` in ``DeploymentTool`` in ``.vcproj``
2024-07-09 14:46:46 +02:00
files generated by the :ref:`Visual Studio Generators`.
2018-10-28 12:09:07 +01:00
This is useful when you want to debug on remote WinCE device.
Specify additional files that will be copied to the device.
For example:
.. code-block:: cmake
set_property(TARGET ${TARGET} PROPERTY
DEPLOYMENT_ADDITIONAL_FILES "english.lng|local_folder|remote_folder|0"
"german.lng|local_folder|remote_folder|0")
produces::
<DeploymentTool AdditionalFiles="english.lng|local_folder|remote_folder|0;german.lng|local_folder|remote_folder|0" ... />