From 90a0b9e2bd7f735c86bfdb5594b688c3768fb0b0 Mon Sep 17 00:00:00 2001 From: VoxelTek <53562267+VoxelTek@users.noreply.github.com> Date: Thu, 26 Jun 2025 11:23:57 +1000 Subject: [PATCH] Add graphics to EBOOT.PBP output. WARNING! WARNING: The PSP SDK "create_pbp_file" CMake function doesn't have support for "ICON1.pmf", even though the tool it uses does. I added in support, but I haven't gotten around to making a PR to merge this into the PSP SDK, so you may run into issues attempting to compile this yourself with a stock version of the PSP SDK. --- CMakeLists.txt | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 91cd9fd6..220a9433 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -663,9 +663,11 @@ elseif(PSP) # Create an EBOOT.PBP file create_pbp_file( TARGET ${PROJECT_NAME} - ICON_PATH NULL - BACKGROUND_PATH NULL + ICON_PATH "${CMAKE_SOURCE_DIR}/XMB/Game/ICON0.png" + ANIM_PATH "${CMAKE_SOURCE_DIR}/XMB/Game/ICON1.pmf" + BACKGROUND_PATH "${CMAKE_SOURCE_DIR}/XMB/Game/PIC1.png" PREVIEW_PATH NULL + MUSIC_PATH "${CMAKE_SOURCE_DIR}/XMB/Game/SND0.at3" TITLE ${PROJECT_NAME} VERSION 01.00 )