libvips/tools/meson.build
John Cupitt ffe13810fb
Remove cruft (#2942)
* remove autotools

It seems to all work. I tested with gtk-doc enabled. I probably missed a
few things argh.

* remove some old cruft

* oop, forgot m4/

* remove version check

since we no longer have a wrapper script
2022-07-24 11:18:30 +01:00

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',
)