6 lines
225 B
CMake
6 lines
225 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) |