mirror of
https://github.com/reactos/CMake.git
synced 2024-12-13 14:27:23 +00:00
9b4dc2ad4a
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>
12 lines
521 B
ReStructuredText
12 lines
521 B
ReStructuredText
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.
|