From 4e6395c7c55f4a7de71819714063dec0f740aa75 Mon Sep 17 00:00:00 2001 From: Helloyunho Date: Thu, 3 Jul 2025 19:02:31 +0900 Subject: [PATCH] =?UTF-8?q?=F0=9F=94=A8=20feat:=20support=20cpack?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- CMakeLists.txt | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/CMakeLists.txt b/CMakeLists.txt index fbab072f..242e5356 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -701,6 +701,13 @@ if(NINTENDO_3DS) ctr_create_3dsx(isle SMDH isle.smdh) install(FILES "$/isle.3dsx" DESTINATION "${CMAKE_INSTALL_BINDIR}") endif() +if(WINDOWS_STORE) + file(GLOB MSIX_FILES "${CMAKE_BINARY_DIR}/AppPackages/isle/*/Dependencies/x64/Microsoft.VCLibs.x64.Debug.14.00.appx" + "${CMAKE_BINARY_DIR}/AppPackages/isle/*/*.msix" + "${CMAKE_BINARY_DIR}/AppPackages/isle/*/*.msixbundle" + ) + install(FILES ${MSIX_FILES} DESTINATION "${CMAKE_INSTALL_BINDIR}") +endif() if(MSVC) set(CPACK_GENERATOR ZIP) else()