24 lines
574 B
Meson
24 lines
574 B
Meson
|
project('gnome-water-reminder', 'c', version: '0.1.0',
|
||
|
meson_version: '>= 0.40.0',
|
||
|
)
|
||
|
|
||
|
i18n = import('i18n')
|
||
|
gnome = import('gnome')
|
||
|
|
||
|
config_h = configuration_data()
|
||
|
config_h.set_quoted('GETTEXT_PACKAGE', 'gnome-water-reminder')
|
||
|
config_h.set_quoted('LOCALEDIR', join_paths(get_option('prefix'), get_option('localedir')))
|
||
|
configure_file(
|
||
|
output: 'gwr-config.h',
|
||
|
configuration: config_h,
|
||
|
)
|
||
|
add_project_arguments([
|
||
|
'-I' + meson.build_root(),
|
||
|
], language: 'c')
|
||
|
|
||
|
subdir('data')
|
||
|
subdir('src')
|
||
|
subdir('po')
|
||
|
|
||
|
meson.add_install_script('build-aux/meson/postinstall.py')
|