2020-08-11 17:27:23 +00:00
|
|
|
project('diffuse',
|
2024-01-13 16:38:42 +00:00
|
|
|
version: '0.9.0',
|
2023-04-03 15:06:41 +00:00
|
|
|
meson_version: '>= 0.55',
|
2020-03-29 14:08:15 +00:00
|
|
|
license: 'GPL-2.0-or-later',
|
|
|
|
default_options: [ 'warning_level=2' ])
|
2020-08-11 17:27:23 +00:00
|
|
|
|
|
|
|
i18n = import('i18n')
|
|
|
|
|
2020-12-08 19:07:26 +00:00
|
|
|
subdir('data')
|
2020-08-11 17:27:23 +00:00
|
|
|
subdir('src')
|
2020-03-29 14:08:15 +00:00
|
|
|
subdir('po')
|
2020-08-11 17:27:23 +00:00
|
|
|
|
2022-08-16 15:10:17 +00:00
|
|
|
if build_machine.system() == 'linux'
|
|
|
|
meson.add_install_script('build-aux/meson/postinstall.py')
|
|
|
|
endif
|