meson.build 231 B

12345678910111213141516
  1. tificc_sources = files(
  2. 'tificc.c',
  3. )
  4. tificc_exe = executable(
  5. 'tificc',
  6. tificc_sources,
  7. dependencies: [liblcms2_dep, common_dep, tiff_dep],
  8. install: true,
  9. )
  10. tificc_man = files(
  11. 'tificc.1',
  12. )
  13. install_man(tificc_man)