summaryrefslogtreecommitdiffstats
path: root/Tests/VSWinStorePhone/cmake/Package_vc11.store.appxmanifest.in
diff options
context:
space:
mode:
authorGilles Khouzam <gillesk@microsoft.com>2014-12-02 21:32:45 (GMT)
committerBrad King <brad.king@kitware.com>2014-12-03 14:31:59 (GMT)
commit352f246f3ebfd8daf5fda9bad2db01b56fa4bf4d (patch)
tree90316933aa4d550d79cf95e3b32e7d38b1324585 /Tests/VSWinStorePhone/cmake/Package_vc11.store.appxmanifest.in
parent2a224b4ce3fcc3c25bb3f56cf50806ae79262fc2 (diff)
downloadCMake-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 'Tests/VSWinStorePhone/cmake/Package_vc11.store.appxmanifest.in')
-rw-r--r--Tests/VSWinStorePhone/cmake/Package_vc11.store.appxmanifest.in6
1 files changed, 3 insertions, 3 deletions
diff --git a/Tests/VSWinStorePhone/cmake/Package_vc11.store.appxmanifest.in b/Tests/VSWinStorePhone/cmake/Package_vc11.store.appxmanifest.in
index d3cb21f..68172fa 100644
--- a/Tests/VSWinStorePhone/cmake/Package_vc11.store.appxmanifest.in
+++ b/Tests/VSWinStorePhone/cmake/Package_vc11.store.appxmanifest.in
@@ -4,7 +4,7 @@
<Properties>
<DisplayName>@SHORT_NAME@</DisplayName>
<PublisherDisplayName>mgong</PublisherDisplayName>
- <Logo>StoreLogo.png</Logo>
+ <Logo>Assets/StoreLogo.png</Logo>
</Properties>
<Prerequisites>
<OSMinVersion>6.2.1</OSMinVersion>
@@ -15,9 +15,9 @@
</Resources>
<Applications>
<Application Id="App" Executable="$targetnametoken$.exe" EntryPoint="@SHORT_NAME@.App">
- <VisualElements DisplayName="@SHORT_NAME@" Description="@SHORT_NAME@" BackgroundColor="#336699" ForegroundText="light" Logo="Logo.png" SmallLogo="SmallLogo.png">
+ <VisualElements DisplayName="@SHORT_NAME@" Description="@SHORT_NAME@" BackgroundColor="#336699" ForegroundText="light" Logo="Assets/Logo.png" SmallLogo="Assets/SmallLogo.png">
<DefaultTile ShowName="allLogos" ShortName="@SHORT_NAME@" />
- <SplashScreen Image="SplashScreen.png" />
+ <SplashScreen Image="Assets/SplashScreen.png" />
</VisualElements>
</Application>
</Applications>