Codebase list xapp / d957699 meson.build
d957699

Tree @d957699 (Download .tar.gz)

meson.build @d957699raw · history · blame

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

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