Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- macro(setup_psp_target TARGET)
- set_property(TARGET ${TARGET} PROPERTY CXX_STANDARD 14)
- target_compile_options(${TARGET} PUBLIC
- -fno-rtti
- -D_PSP_FW_VERSION=500
- )
- target_link_directories(${TARGET} PUBLIC ${PSPSDK}/lib)
- target_link_options(${TARGET} PUBLIC
- -D_PSP_FW_VERSION=${PSP_FW_VERSION}
- ${PSP_LIBRARIES}
- -specs=${PSPSDK}/lib/prxspecs
- -Wl,-q,-T${PSPSDK}/lib/linkfile.prx
- ${PSPSDK}/lib/prxexports.o
- ${PSP_LIBRARIES}
- -D_PSP_FW_VERSION=500
- "-o ${TARGET}.elf")
- endmacro(setup_psp_target)
Add Comment
Please, Sign In to add comment