libvips/tools/meson.build

21 lines
345 B
Meson

tools = [
'vips',
'vipsedit',
'vipsthumbnail',
'vipsheader'
]
foreach tool : tools
executable(tool,
tool + '.c',
dependencies: libvips_dep,
install: true
)
endforeach
install_data(
'vipsprofile',
install_dir: get_option('prefix') / get_option('bindir'),
install_mode: 'rwxr-xr-x',
)