mirror of
https://github.com/Kitware/CMake.git
synced 2026-01-06 05:40:54 -06:00
Help: Add documentation for DEPLOYMENT_ADDITIONAL_FILES
This commit is contained in:
@@ -173,6 +173,7 @@ Properties on Targets
|
|||||||
/prop_tgt/DEBUG_POSTFIX
|
/prop_tgt/DEBUG_POSTFIX
|
||||||
/prop_tgt/DEFINE_SYMBOL
|
/prop_tgt/DEFINE_SYMBOL
|
||||||
/prop_tgt/DEPLOYMENT_REMOTE_DIRECTORY
|
/prop_tgt/DEPLOYMENT_REMOTE_DIRECTORY
|
||||||
|
/prop_tgt/DEPLOYMENT_ADDITIONAL_FILES
|
||||||
/prop_tgt/DOTNET_TARGET_FRAMEWORK_VERSION
|
/prop_tgt/DOTNET_TARGET_FRAMEWORK_VERSION
|
||||||
/prop_tgt/EchoString
|
/prop_tgt/EchoString
|
||||||
/prop_tgt/ENABLE_EXPORTS
|
/prop_tgt/ENABLE_EXPORTS
|
||||||
|
|||||||
18
Help/prop_tgt/DEPLOYMENT_ADDITIONAL_FILES.rst
Normal file
18
Help/prop_tgt/DEPLOYMENT_ADDITIONAL_FILES.rst
Normal file
@@ -0,0 +1,18 @@
|
|||||||
|
DEPLOYMENT_ADDITIONAL_FILES
|
||||||
|
---------------------------
|
||||||
|
|
||||||
|
Set the WinCE project ``AdditionalFiles`` in ``DeploymentTool`` in ``.vcproj``
|
||||||
|
files generated by the :generator:`Visual Studio 9 2008` generator.
|
||||||
|
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" ... />
|
||||||
7
Help/release/dev/vs-deployment-files.rst
Normal file
7
Help/release/dev/vs-deployment-files.rst
Normal file
@@ -0,0 +1,7 @@
|
|||||||
|
vs-deployment-files
|
||||||
|
-------------------
|
||||||
|
|
||||||
|
* The :prop_tgt:`DEPLOYMENT_ADDITIONAL_FILES` target property was
|
||||||
|
added to tell the :generator:`Visual Studio 9 2008` generator
|
||||||
|
to specify additional files for deployment to WinCE devices
|
||||||
|
for remote debugging.
|
||||||
Reference in New Issue
Block a user