Codebase list xapp / d4b6d0f meson.build
d4b6d0f

Tree @d4b6d0f (Download .tar.gz)

meson.build @d4b6d0f

9e2566e
 
8f3330c
9e2566e
 
 
 
 
 
 
 
 
3706967
 
 
 
 
 
 
 
 
 
9e2566e
 
 
 
 
 
 
cc8cc82
9e2566e
 
 
3706967
 
 
 
project('xapp',
    'c',
    version : '1.4.5'
)

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