meson.build 456 B

12345678910111213141516171819
  1. project('gobject-introspection', 'c')
  2. gnome = import('gnome')
  3. gio = dependency('gio-2.0')
  4. giounix = dependency('gio-unix-2.0')
  5. glib = dependency('glib-2.0')
  6. gobj = dependency('gobject-2.0')
  7. gir = dependency('gobject-introspection-1.0')
  8. gmod = dependency('gmodule-2.0')
  9. add_global_arguments('-DMESON_TEST', language : 'c')
  10. subdir('resources-data')
  11. subdir('resources')
  12. subdir('gir')
  13. subdir('schemas')
  14. subdir('gdbus')
  15. subdir('mkenums')
  16. subdir('genmarshal')