summaryrefslogtreecommitdiffstats
path: root/Tests/VSWinStorePhone
diff options
context:
space:
mode:
authorVedran Vujinovic <vedran.vujinovic@gmail.com>2019-09-25 18:57:47 (GMT)
committerVedran Vujinovic <vedran.vujinovic@gmail.com>2019-09-25 18:57:47 (GMT)
commit4dc8c153ec40c48f88e74beb127949395dfbcf55 (patch)
tree799a755861ee9f0eb9c0893b9c1f2959fba48835 /Tests/VSWinStorePhone
parent481070a78a90a7e6c0bfc433fec842c78d63d9de (diff)
downloadCMake-4dc8c153ec40c48f88e74beb127949395dfbcf55.zip
CMake-4dc8c153ec40c48f88e74beb127949395dfbcf55.tar.gz
CMake-4dc8c153ec40c48f88e74beb127949395dfbcf55.tar.bz2
Tests: Teach VSWinStorePhone to verify the content of generated xap
XAP format was used as app package format on Windows Phone 7 and 8. It was replaced by APPX format since Windows Phone 8.1.
Diffstat (limited to 'Tests/VSWinStorePhone')
-rw-r--r--Tests/VSWinStorePhone/VerifyAppPackage.cmake4
1 files changed, 2 insertions, 2 deletions
diff --git a/Tests/VSWinStorePhone/VerifyAppPackage.cmake b/Tests/VSWinStorePhone/VerifyAppPackage.cmake
index f1cf030..f9440d7 100644
--- a/Tests/VSWinStorePhone/VerifyAppPackage.cmake
+++ b/Tests/VSWinStorePhone/VerifyAppPackage.cmake
@@ -8,8 +8,8 @@ set(EXPECTED_APP_PKG_CONTENT
JusticeLeagueWinRT.dll
)
-# Windows app package formats can be either appx or msix
-file(GLOB_RECURSE ALL_APP_PKG_FILES ${APP_PACKAGE_DIR}/AppPackages ${APP_PKG_NAME}*.appx ${APP_PKG_NAME}*.msix)
+# Windows app package formats can be either msix, appx or xap
+file(GLOB_RECURSE ALL_APP_PKG_FILES ${APP_PACKAGE_DIR} ${APP_PKG_NAME}*.msix ${APP_PKG_NAME}*.appx ${APP_PKG_NAME}*.xap)
# There can be only one generated app package
list(LENGTH ALL_APP_PKG_FILES APP_PKG_COUNT)