diff options
author | Brad King <brad.king@kitware.com> | 2018-07-10 14:06:00 (GMT) |
---|---|---|
committer | Kitware Robot <kwrobot@kitware.com> | 2018-07-10 14:06:07 (GMT) |
commit | 5f7886c52b8f06c6429c66c102af9f4afe72896c (patch) | |
tree | ba8e32fb23b8948d10b9ea39fe48f809c32fccef /Help/prop_tgt | |
parent | be69317b971dd381fe771701aa9ed944416e26c6 (diff) | |
parent | 3b2ea092ef42f52434c9618023d3a7216bb43c98 (diff) | |
download | CMake-5f7886c52b8f06c6429c66c102af9f4afe72896c.zip CMake-5f7886c52b8f06c6429c66c102af9f4afe72896c.tar.gz CMake-5f7886c52b8f06c6429c66c102af9f4afe72896c.tar.bz2 |
Merge topic 'vs-deployment-files'
3b2ea092ef Help: Add documentation for DEPLOYMENT_ADDITIONAL_FILES
b771b2c300 VS: extended OutputDeploymentDebuggerTool for AdditionalFiles
2f4075fa45 VS: moved EscapeForXML function higher up and made static
Acked-by: Kitware Robot <kwrobot@kitware.com>
Merge-request: !2184
Diffstat (limited to 'Help/prop_tgt')
-rw-r--r-- | Help/prop_tgt/DEPLOYMENT_ADDITIONAL_FILES.rst | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/Help/prop_tgt/DEPLOYMENT_ADDITIONAL_FILES.rst b/Help/prop_tgt/DEPLOYMENT_ADDITIONAL_FILES.rst new file mode 100644 index 0000000..5e9c191 --- /dev/null +++ b/Help/prop_tgt/DEPLOYMENT_ADDITIONAL_FILES.rst @@ -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" ... /> |