meson.build 253 B

1234567891011121314151617
  1. jpgicc_sources = files(
  2. 'iccjpeg.c',
  3. 'jpgicc.c',
  4. )
  5. jpgicc_exe = executable(
  6. 'jpgicc',
  7. jpgicc_sources,
  8. dependencies: [liblcms2_dep, jpeg_dep, common_dep, m_dep],
  9. install: true,
  10. )
  11. jpgicc_man = files(
  12. 'jpgicc.1',
  13. )
  14. install_man(jpgicc_man)