Make install work ok if meson is old.

This commit is contained in:
Calvin Rose 2022-05-25 22:35:20 -05:00
parent 395ca7feea
commit 431451bac2
1 changed files with 8 additions and 0 deletions

View File

@ -267,5 +267,13 @@ patched_janet = custom_target('patched-janeth',
# Create a version of the janet.h header that matches what jpm often expects
if meson.version().version_compare('>=0.61')
install_symlink('janet.h', pointing_to: 'janet/janet.h', install_dir: get_option('includedir'))
else
patched_janet2 = custom_target('patched-janeth2',
input : ['tools/patch-header.janet', 'src/include/janet.h', jconf],
install : true,
install_dir : get_option('includedir'),
build_by_default : true,
output : ['janet.h'],
command : [janet_nativeclient, '@INPUT@', '@OUTPUT@'])
endif