hello_ps2/CMakeLists.txt
2025-03-27 15:51:24 -06:00

5 lines
186 B
CMake

cmake_minimum_required(VERSION 3.10)
set(MAKE_TOOLCHAIN_FILE $PS2SDK/ps2dev.cmake)
project(helloworld)
add_executable(helloworld.elf main.c)
target_link_libraries(helloworld.elf -ldebug)