Codebase list xapp / e5be37c meson.build
e5be37c

Tree @e5be37c (Download .tar.gz)

meson.build @e5be37craw · 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