libaurum: Support focus skipped window
[platform/core/uifw/aurum.git] / meson.build
1 project('aurum', ['cpp'],
2   version: '0.1.1',
3   default_options : ['buildtype=debugoptimized', 'cpp_std=gnu++17'],
4   meson_version : '>=0.47'
5 )
6
7 dir_prefix    = get_option('prefix')
8 dir_include   = join_paths(dir_prefix, get_option('includedir'))
9
10 config_h = configuration_data()
11 if get_option('tizen') == true
12   config_h.set10('TIZEN', true)
13 else
14   message('')
15 endif
16 if get_option('tizen_gcov') == true
17   config_h.set10('TIZEN_GCOV', true)
18 endif
19
20 root_inc = include_directories('./')
21
22 subdir('pugixml')
23 subdir('protocol')
24 subdir('libaurum')
25 if get_option('tizen') == true
26   subdir('org.tizen.aurum-bootstrap')
27 endif
28 subdir('tests')
29
30 configure_file(
31   output: 'config.h',
32   configuration: config_h,
33   install_dir: dir_include
34 )
35
36 dconf = configuration_data()
37 dconf.set('VERSION', meson.project_version())
38 if find_program('dot', required : false).found()
39    dconf.set('HAVE_DOT', 'YES')
40 else
41    dconf.set('HAVE_DOT', 'NO')
42 endif
43
44 if get_option('enable_documentation') == true
45   doxygen = find_program('doxygen', required: false)
46   if not doxygen.found()
47     error('doxygen not found')
48   endif
49   subdir('doc')
50 endif