File: meson.build

package info (click to toggle)
diffuse 0.9.0-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 3,160 kB
  • sloc: python: 7,689; xml: 5,993; sh: 61; makefile: 9
file content (15 lines) | stat: -rw-r--r-- 319 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
project('diffuse',
    version: '0.9.0',
    meson_version: '>= 0.55',
    license: 'GPL-2.0-or-later',
    default_options: [ 'warning_level=2' ])

i18n = import('i18n')

subdir('data')
subdir('src')
subdir('po')

if build_machine.system() == 'linux'
  meson.add_install_script('build-aux/meson/postinstall.py')
endif