mirror of
https://github.com/autc04/Retro68.git
synced 2024-11-24 23:32:06 +00:00
Merge pull request #178 from ryandesign/add_application-r-absolute
cmake: Allow rez files specified by absolute path
This commit is contained in:
commit
0288f3d5a6
@ -28,21 +28,21 @@ function(add_application name)
|
|||||||
list(TRANSFORM rez_include_options PREPEND -I)
|
list(TRANSFORM rez_include_options PREPEND -I)
|
||||||
|
|
||||||
foreach(f ${ARGS_FILES})
|
foreach(f ${ARGS_FILES})
|
||||||
|
get_filename_component(abspath "${f}" ABSOLUTE)
|
||||||
if(${f} MATCHES "\\.r$")
|
if(${f} MATCHES "\\.r$")
|
||||||
|
get_filename_component(rsrc_file "${f}" NAME)
|
||||||
|
set(rsrc_file "${CMAKE_CURRENT_BINARY_DIR}/${rsrc_file}.rsrc.bin")
|
||||||
add_custom_command(
|
add_custom_command(
|
||||||
OUTPUT ${f}.rsrc.bin
|
OUTPUT ${rsrc_file}
|
||||||
COMMAND ${REZ} ${REZ_FLAGS} ${CMAKE_CURRENT_SOURCE_DIR}/${f} ${rez_include_options} -o ${f}.rsrc.bin
|
COMMAND ${REZ} ${REZ_FLAGS} ${abspath} ${rez_include_options} -o ${rsrc_file}
|
||||||
DEPENDS ${CMAKE_CURRENT_SOURCE_DIR}/${f})
|
DEPENDS ${abspath})
|
||||||
list(APPEND rsrc_files "${CMAKE_CURRENT_BINARY_DIR}/${f}.rsrc.bin")
|
list(APPEND rsrc_files "${rsrc_file}")
|
||||||
list(APPEND rez_files "${f}")
|
list(APPEND rez_files "${abspath}")
|
||||||
elseif(${f} MATCHES "\\.rsrc$")
|
elseif(${f} MATCHES "\\.rsrc$")
|
||||||
get_filename_component(abspath "${f}" ABSOLUTE)
|
|
||||||
list(APPEND rsrc_files "${abspath}")
|
list(APPEND rsrc_files "${abspath}")
|
||||||
elseif(${f} MATCHES "\\.rsrc.bin$")
|
elseif(${f} MATCHES "\\.rsrc.bin$")
|
||||||
get_filename_component(abspath "${f}" ABSOLUTE)
|
|
||||||
list(APPEND rsrc_files "${abspath}")
|
list(APPEND rsrc_files "${abspath}")
|
||||||
else()
|
else()
|
||||||
get_filename_component(abspath "${f}" ABSOLUTE)
|
|
||||||
list(APPEND files "${abspath}")
|
list(APPEND files "${abspath}")
|
||||||
endif()
|
endif()
|
||||||
endforeach()
|
endforeach()
|
||||||
|
Loading…
Reference in New Issue
Block a user