Wii: Add elf2dol post-build

This commit is contained in:
Jeffrey Pfau 2015-06-18 02:13:04 -07:00
parent e94744d8c7
commit 4f8020dd1f
1 changed files with 3 additions and 1 deletions

View File

@ -207,7 +207,9 @@ if(WII)
add_definitions(-DCOLOR_16_BIT -DCOLOR_5_6_5)
file(GLOB WII_SRC ${CMAKE_SOURCE_DIR}/src/platform/wii/*.c)
add_executable(${BINARY_NAME}.elf ${WII_SRC})
target_link_libraries(${BINARY_NAME}.elf ${BINARY_NAME} fat ogc)
list(APPEND OS_LIB fat ogc)
target_link_libraries(${BINARY_NAME}.elf ${BINARY_NAME} ${OS_LIB})
add_custom_command(TARGET ${BINARY_NAME}.elf POST_BUILD COMMAND ${ELF2DOL} ${BINARY_NAME}.elf ${BINARY_NAME}.dol)
endif()
if(BUILD_PANDORA)