project( 'audrey', 'c', version: '0.1.0', # AUDREY_VERSION meson_version: '>= 1.0.0', default_options: ['warning_level=0', 'werror=false'], ) i18n = import('i18n') gnome = import('gnome') cc = meson.get_compiler('c') srcdir = meson.project_source_root() / 'src' config_h = configuration_data() config_h.set_quoted('PACKAGE_VERSION', meson.project_version()) config_h.set_quoted('GETTEXT_PACKAGE', 'audrey') config_h.set_quoted('LOCALEDIR', get_option('prefix') / get_option('localedir')) configure_file(output: 'config.h', configuration: config_h) config_inc = include_directories('.') add_project_arguments( [ '-DGETTEXT_PACKAGE="' + meson.project_name() + '"', '-DG_LOG_DOMAIN="audrey"', ], language: 'c', ) add_project_arguments( cc.get_supported_arguments( ['-Wno-tautological-pointer-compare', '-Wno-unused-value'], ), language: 'c', ) subdir('data') subdir('src') subdir('po') gnome.post_install( glib_compile_schemas: true, gtk_update_icon_cache: true, update_desktop_database: true, )