13 lines
503 B
CMake
13 lines
503 B
CMake
cmake_minimum_required(VERSION 3.10)
|
|
set(MAKE_TOOLCHAIN_FILE $PS2SDK/ps2dev.cmake)
|
|
set(CMAKE_C_FLAGS_DEBUG -DDEBUG)
|
|
project(helloworld)
|
|
add_executable(helloworld.elf main.c)
|
|
target_link_libraries(helloworld.elf debug -ldebug -lgraph -ldma -ldraw)
|
|
add_custom_command(
|
|
TARGET helloworld.elf
|
|
POST_BUILD
|
|
COMMAND mkisofs -l -o helloworld.iso helloworld.elf ${CMAKE_CURRENT_SOURCE_DIR}/ISO
|
|
DEPENDS ${CMAKE_CURRENT_SOURCE_DIR}/SYSTEM.CNF ${CMAKE_CURRENT_BUILD_DIR}/helloworld.elf
|
|
VERBATIM
|
|
) |