19 lines
340 B
Meson
19 lines
340 B
Meson
project('mcg',
|
|
version: '3.1',
|
|
meson_version: '>= 0.59.0',
|
|
default_options: [
|
|
'warning_level=2',
|
|
'werror=false',
|
|
],
|
|
)
|
|
|
|
subdir('data')
|
|
subdir('src')
|
|
subdir('po')
|
|
|
|
gnome = import('gnome')
|
|
gnome.post_install(
|
|
glib_compile_schemas: true,
|
|
gtk_update_icon_cache: true,
|
|
update_desktop_database: true,
|
|
)
|