Codebase list xapp / debian/1.4.9-1 meson.build
debian/1.4.9-1

Tree @debian/1.4.9-1 (Download .tar.gz)

meson.build @debian/1.4.9-1raw · history · blame

project('xapp',
    'c',
    version : '1.4.9'
)

gnome = import('gnome')
pkg = import('pkgconfig')
i18n = import('i18n')

cdata = configuration_data()
cdata.set('GETTEXT_PACKAGE', '"xapp"')

if not get_option('deprecated_warnings')
  add_global_arguments([
      '-Wno-deprecated-declarations',
      '-Wno-deprecated',
      '-Wno-declaration-after-statement',
    ],
    language: 'c',
  )
endif

c = configure_file(output : 'config.h',
    configuration : cdata
)

top_inc = include_directories('.')

subdir('libxapp')
subdir('po')
subdir('pygobject')
subdir('files')
subdir('schemas')

if get_option('docs')
    subdir('docs')
endif