diff --git a/CMakeLists.txt b/CMakeLists.txt index 53d55a0..fd0c280 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -36,7 +36,7 @@ create_pbp_file( ICON_PATH ${CMAKE_CURRENT_SOURCE_DIR}/ICON0.PNG BACKGROUND_PATH NULL PREVIEW_PATH NULL - TITLE "CHIP-8 Emulator" + TITLE "CHIP-8 Emulator v1.0" VERSION 01.00 ) @@ -46,3 +46,9 @@ add_custom_target( DEPENDS EBOOT.PBP ) +add_custom_target( + dist + COMMAND rm -rf dist && mkdir -p dist/roms && cp EBOOT.PBP PARAM.SFO ../config.toml dist/ && wget https://archive.org/download/Chip-8RomsThatAreInThePublicDomain/c8games.zip && unzip c8games.zip -d dist/roms && rm c8games.zip && 7z a dist.zip dist + DEPENDS EBOOT.PBP +) +