summaryrefslogtreecommitdiffstats
path: root/Help/prop_sf
diff options
context:
space:
mode:
authorBrad King <brad.king@kitware.com>2014-07-29 18:03:35 (GMT)
committerBrad King <brad.king@kitware.com>2014-08-12 14:08:47 (GMT)
commit9b4dc2ad4a82b233520015fdc5cbf5df1ed540f7 (patch)
treee443202093fd79ef3abcaa967cf894780111ea38 /Help/prop_sf
parentf063a914c649b1dfbcd1a02d381b4e94ad01ceaa (diff)
downloadCMake-9b4dc2ad4a82b233520015fdc5cbf5df1ed540f7.zip
CMake-9b4dc2ad4a82b233520015fdc5cbf5df1ed540f7.tar.gz
CMake-9b4dc2ad4a82b233520015fdc5cbf5df1ed540f7.tar.bz2
VS: Add a source file property to mark content for Windows App deployment
Create a VS_DEPLOYMENT_CONTENT source file property, supporting generator expressions, to compute whether a source file should be marked as DeploymentContent or ExcludedFromBuild in Windows Phone and Windows Store projects. Inspired-by: Minmin Gong <minmin.gong@gmail.com>
Diffstat (limited to 'Help/prop_sf')
-rw-r--r--Help/prop_sf/VS_DEPLOYMENT_CONTENT.rst11
1 files changed, 11 insertions, 0 deletions
diff --git a/Help/prop_sf/VS_DEPLOYMENT_CONTENT.rst b/Help/prop_sf/VS_DEPLOYMENT_CONTENT.rst
new file mode 100644
index 0000000..9fb3ba3
--- /dev/null
+++ b/Help/prop_sf/VS_DEPLOYMENT_CONTENT.rst
@@ -0,0 +1,11 @@
+VS_DEPLOYMENT_CONTENT
+---------------------
+
+Mark a source file as content for deployment with a Windows Phone or
+Windows Store application when built with a Visual Studio generator.
+The value must evaluate to either ``1`` or ``0`` and may use
+:manual:`generator expressions <cmake-generator-expressions(7)>`
+to make the choice based on the build configuration.
+The ``.vcxproj`` file entry for the source file will be
+marked either ``DeploymentContent`` or ``ExcludedFromBuild``
+for values ``1`` and ``0``, respectively.