Initial CMake configuration

This commit is contained in:
Francisco Javier Trujillo Mata
2022-06-06 00:02:08 +02:00
committed by Sam Lantinga
parent 273d9e4640
commit 580416d3c8
2 changed files with 7 additions and 4 deletions

View File

@@ -259,7 +259,7 @@ endif()
file(GLOB RESOURCE_FILES *.bmp *.wav *.hex moose.dat utf8.txt)
file(COPY ${RESOURCE_FILES} DESTINATION ${CMAKE_CURRENT_BINARY_DIR})
if(PSP)
if(PSP OR PS2)
set(NEEDS_RESOURCES
testscale
testrendercopyex
@@ -406,7 +406,7 @@ endif()
foreach(APP IN LISTS NEEDS_RESOURCES)
foreach(RESOURCE_FILE ${RESOURCE_FILES})
if(PSP)
if(PSP OR PS2)
add_custom_command(TARGET ${APP} POST_BUILD COMMAND ${CMAKE_COMMAND} ARGS -E copy_if_different ${RESOURCE_FILE} $<TARGET_FILE_DIR:${APP}>/sdl-${APP})
else()
add_custom_command(TARGET ${APP} POST_BUILD COMMAND ${CMAKE_COMMAND} ARGS -E copy_if_different ${RESOURCE_FILE} $<TARGET_FILE_DIR:${APP}>)