mirror of
https://codeberg.org/dnkl/foot.git
synced 2026-02-05 04:06:08 -05:00
meson: use find_program() to find 'tic'
This commit is contained in:
parent
6bac1bd257
commit
728db1df0e
1 changed files with 2 additions and 1 deletions
|
|
@ -148,11 +148,12 @@ executable(
|
|||
'log.c', 'log.h', version,
|
||||
install: true)
|
||||
|
||||
tic = find_program('tic', native: true)
|
||||
custom_target(
|
||||
'terminfo',
|
||||
output: 'f',
|
||||
input: 'foot.info',
|
||||
command: ['tic', '-x', '-o', '@OUTDIR@', '-e', 'foot,foot-direct', '@INPUT@'],
|
||||
command: [tic, '-x', '-o', '@OUTDIR@', '-e', 'foot,foot-direct', '@INPUT@'],
|
||||
install: true,
|
||||
install_dir: join_paths(get_option('datadir'), 'terminfo'))
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue