The Meson Build System
http://mesonbuild.com/
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
16 lines
410 B
16 lines
410 B
project('gobject-introspection', 'c') |
|
|
|
gnome = import('gnome') |
|
gio = dependency('gio-2.0') |
|
giounix = dependency('gio-unix-2.0') |
|
glib = dependency('glib-2.0') |
|
gobj = dependency('gobject-2.0') |
|
gir = dependency('gobject-introspection-1.0') |
|
gmod = dependency('gmodule-2.0') |
|
add_global_arguments('-DMESON_TEST', language : 'c') |
|
|
|
subdir('resources') |
|
subdir('gir') |
|
subdir('schemas') |
|
subdir('gdbus') |
|
subdir('mkenums')
|
|
|