Unix: allow adding a prefix to all the puzzle names.

A distro maintainer reminds me that downstreams often want to rename
my quite generic executable names to avoid clashes in bin directories.
Added a cmake option -DOUTPUT_NAME to make that easy.
This commit is contained in:
Simon Tatham
2021-03-31 18:44:44 +01:00
parent 306fab356e
commit dd8164b774

View File

@ -58,6 +58,8 @@ function(get_platform_puzzle_extra_source_files OUTVAR NAME)
endfunction()
function(set_platform_puzzle_target_properties NAME TARGET)
set_target_properties(${TARGET} PROPERTIES
OUTPUT_NAME ${NAME_PREFIX}${NAME})
install(TARGETS ${TARGET})
endfunction()