mirror of
https://github.com/aap/librw.git
synced 2025-12-18 16:39:51 +00:00
cmake+ps2: create .elf files
This commit is contained in:
18
cmake/ps2/PS2Functions.cmake
Normal file
18
cmake/ps2/PS2Functions.cmake
Normal file
@@ -0,0 +1,18 @@
|
||||
if(NOT COMMAND add_erl_executable)
|
||||
message(FATAL_ERROR "The `add_erl_executable` cmake command is not available. Please use an appropriate Playstation 2 toolchain.")
|
||||
endif()
|
||||
|
||||
function(librw_platform_target TARGET)
|
||||
cmake_parse_arguments(LPT "INSTALL" "" "" ${ARGN})
|
||||
|
||||
get_target_property(TARGET_TYPE "${TARGET}" TYPE)
|
||||
if(TARGET_TYPE STREQUAL "EXECUTABLE")
|
||||
add_erl_executable(${TARGET} OUTPUT_VAR ERL_FILE)
|
||||
|
||||
if(LIBRW_INSTALL AND LPT_INSTALL)
|
||||
install(FILES "${ERL_FILE}"
|
||||
DESTINATION "${CMAKE_INSTALL_BINDIR}"
|
||||
)
|
||||
endif()
|
||||
endif()
|
||||
endfunction()
|
||||
Reference in New Issue
Block a user