diff options
author | Gilles Khouzam <gillesk@microsoft.com> | 2014-12-02 21:32:45 (GMT) |
---|---|---|
committer | Brad King <brad.king@kitware.com> | 2014-12-03 14:31:59 (GMT) |
commit | 352f246f3ebfd8daf5fda9bad2db01b56fa4bf4d (patch) | |
tree | 90316933aa4d550d79cf95e3b32e7d38b1324585 /Help/prop_sf | |
parent | 2a224b4ce3fcc3c25bb3f56cf50806ae79262fc2 (diff) | |
download | CMake-352f246f3ebfd8daf5fda9bad2db01b56fa4bf4d.zip CMake-352f246f3ebfd8daf5fda9bad2db01b56fa4bf4d.tar.gz CMake-352f246f3ebfd8daf5fda9bad2db01b56fa4bf4d.tar.bz2 |
VS: Add source file property to specify Windows App deployment location
Add a VS_DEPLOYMENT_LOCATION source file property to specify where to
put files that are part of the package. For example:
set_property(SOURCE ${ASSET_FILES} PROPERTY VS_DEPLOYMENT_LOCATION "assets")
Without this, sources marked with VS_DEPLOYMENT_CONTENT cannot be
located properly.
Diffstat (limited to 'Help/prop_sf')
-rw-r--r-- | Help/prop_sf/VS_DEPLOYMENT_LOCATION.rst | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/Help/prop_sf/VS_DEPLOYMENT_LOCATION.rst b/Help/prop_sf/VS_DEPLOYMENT_LOCATION.rst new file mode 100644 index 0000000..303db95 --- /dev/null +++ b/Help/prop_sf/VS_DEPLOYMENT_LOCATION.rst @@ -0,0 +1,8 @@ +VS_DEPLOYMENT_LOCATION +---------------------- + +Specifies the deployment location for a content source file with a Windows +Phone or Windows Store application when built with a Visual Studio generator. +This property is only applicable when using :prop_sf:`VS_DEPLOYMENT_CONTENT`. +The value represent the path relative to the app package and applies to all +configurations. |