diff --git a/uwp/Assets/LockScreenLogo.scale-200.png b/uwp/Assets/LockScreenLogo.scale-200.png new file mode 100644 index 00000000..84acac56 Binary files /dev/null and b/uwp/Assets/LockScreenLogo.scale-200.png differ diff --git a/uwp/Assets/Square150x150Logo.png b/uwp/Assets/Square150x150Logo.png new file mode 100644 index 00000000..411b7dcc Binary files /dev/null and b/uwp/Assets/Square150x150Logo.png differ diff --git a/uwp/Assets/Square150x150Logo.scale-200.png b/uwp/Assets/Square150x150Logo.scale-200.png new file mode 100644 index 00000000..411b7dcc Binary files /dev/null and b/uwp/Assets/Square150x150Logo.scale-200.png differ diff --git a/uwp/Assets/Square44x44Logo.scale-200.png b/uwp/Assets/Square44x44Logo.scale-200.png new file mode 100644 index 00000000..91801b4c Binary files /dev/null and b/uwp/Assets/Square44x44Logo.scale-200.png differ diff --git a/uwp/Assets/Square44x44Logo.targetsize-24_altform-unplated.png b/uwp/Assets/Square44x44Logo.targetsize-24_altform-unplated.png new file mode 100644 index 00000000..395c19b7 Binary files /dev/null and b/uwp/Assets/Square44x44Logo.targetsize-24_altform-unplated.png differ diff --git a/uwp/Assets/StoreLogo.png b/uwp/Assets/StoreLogo.png new file mode 100644 index 00000000..6b379522 Binary files /dev/null and b/uwp/Assets/StoreLogo.png differ diff --git a/uwp/CMakeLists.txt b/uwp/CMakeLists.txt index b074a816..60c852c7 100644 --- a/uwp/CMakeLists.txt +++ b/uwp/CMakeLists.txt @@ -25,7 +25,15 @@ set(HASHLINK_DIR CACHE PATH "") set(MBHAXE_DIR CACHE PATH "") add_executable(${PROJECT_NAME} WIN32 - main.cpp + main.cpp +) + +set(PkgAssets + Assets/LockScreenLogo.scale-200.png + Assets/Square44x44Logo.targetsize-24_altform-unplated.png + Assets/Square44x44Logo.scale-200.png + Assets/Square150x150Logo.scale-200.png + Assets/StoreLogo.png ) set(BinDeps @@ -60,7 +68,7 @@ set(BinLibs ${HASHLINK_DIR}/uv.lib ${MBHAXE_DIR}/marblegame.lib ) -source_group("BinDep" FILES ${BinDeps}) +source_group("BinDeps" FILES ${BinDeps}) set_source_files_properties(${BinDeps} PROPERTIES VS_COPY_TO_OUT_DIR Always @@ -68,6 +76,14 @@ set_source_files_properties(${BinDeps} PROPERTIES VS_DEPLOYMENT_LOCATION "." ) +source_group("PkgAssets" FILES ${PkgAssets}) + +set_source_files_properties(${PkgAssets} PROPERTIES + #VS_COPY_TO_OUT_DIR Always + VS_DEPLOYMENT_CONTENT TRUE + VS_DEPLOYMENT_LOCATION "Assets" +) + # Setup data deployment file(GLOB_RECURSE DATA_FILES RELATIVE ${CMAKE_SOURCE_DIR}/.. @@ -93,6 +109,7 @@ target_sources(${PROJECT_NAME} PRIVATE cacert.pem Package.appxmanifest ${BinDeps} + ${PkgAssets} ) target_link_libraries(${PROJECT_NAME} PRIVATE ${BinLibs} SDL2 WindowsApp.lib OneCore.lib)