Tough_Crowd/meson.build

16 lines
319 B
Meson
Raw Normal View History

2020-08-11 17:27:23 +00:00
project('diffuse',
2024-01-13 16:38:42 +00:00
version: '0.9.0',
meson_version: '>= 0.55',
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')
subdir('po')
2020-08-11 17:27:23 +00:00
if build_machine.system() == 'linux'
meson.add_install_script('build-aux/meson/postinstall.py')
endif