mirror of
https://codeberg.org/dnkl/foot.git
synced 2026-04-11 08:21:01 -04: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,
|
'log.c', 'log.h', version,
|
||||||
install: true)
|
install: true)
|
||||||
|
|
||||||
|
tic = find_program('tic', native: true)
|
||||||
custom_target(
|
custom_target(
|
||||||
'terminfo',
|
'terminfo',
|
||||||
output: 'f',
|
output: 'f',
|
||||||
input: 'foot.info',
|
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: true,
|
||||||
install_dir: join_paths(get_option('datadir'), 'terminfo'))
|
install_dir: join_paths(get_option('datadir'), 'terminfo'))
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue