meson.build 188 B

1234567891011121314
  1. if host_machine.system() == 'darwin'
  2. gif_writer_files = files(
  3. 'common.d',
  4. 'osx.d',
  5. 'package.d'
  6. )
  7. else
  8. gif_writer_files = files(
  9. 'common.d',
  10. 'package.d',
  11. 'posix.d'
  12. )
  13. endif