meson: Build .rc file on Windows
[atk.git] / meson.build
blob44806d0fb5130e69aeddb58dc08129c155138b4d
1 project('atk', 'c',
2         version: '2.25.90',
3         license: 'LGPLv2.1+',
4         default_options: [
5           'buildtype=debugoptimized',
6           'warning_level=1',
7           'c_std=c99',
8         ],
9         meson_version : '>= 0.40.1')
11 cc = meson.get_compiler('c')
12 host_system = host_machine.system()
14 version = meson.project_version().split('.')
15 atk_major_version = version[0].to_int()
16 atk_minor_version = version[1].to_int()
17 atk_micro_version = version[2].to_int()
19 atk_interface_age = 1
20 atk_binary_age = 10000 * atk_major_version + 100 * atk_minor_version + 10 + atk_micro_version
22 atk_api_version = '1.0'
23 atk_api_path = 'atk-@0@/atk'.format(atk_api_version)
25 atk_prefix = get_option('prefix')
26 atk_libdir = join_paths(atk_prefix, get_option('libdir'))
27 atk_sysconfdir = join_paths(atk_prefix, get_option('sysconfdir'))
28 atk_includedir = join_paths(atk_prefix, get_option('includedir'))
29 atk_datadir = join_paths(atk_prefix, get_option('datadir'))
30 atk_libexecdir = join_paths(atk_prefix, get_option('libexecdir'))
32 atk_conf = configuration_data()
34 atk_conf.set_quoted('VERSION', meson.project_version())
35 atk_conf.set_quoted('GETTEXT_PACKAGE', 'atk10')
37 # Maintain version scheme with libtool
38 atk_soversion = 0
39 atk_libversion = '@0@.@1@.@2@'.format(atk_soversion, (atk_binary_age - atk_interface_age), atk_interface_age)
41 add_project_arguments([ '-DG_DISABLE_SINGLE_INCLUDES', '-DATK_DISABLE_SINGLE_INCLUDES' ], language: 'c')
43 # Compiler and linker flags
44 common_cflags = []
45 common_ldflags = []
47 test_cflags = []
49 # Symbol visibility
50 if get_option('default_library') != 'static'
51   if host_system == 'windows'
52     atk_conf.set('DLL_EXPORT', true)
53     atk_conf.set('_ATK_EXTERN', '__declspec(dllexport) extern')
54     if cc.get_id() != 'msvc'
55       test_cflags += ['-fvisibility=hidden']
56     endif
57   else
58     atk_conf.set('_ATK_EXTERN', '__attribute__((visibility("default"))) extern')
59     test_cflags += ['-fvisibility=hidden']
60   endif
61 endif
63 # Check all compiler flags
64 foreach cflag: test_cflags
65   if cc.has_argument(cflag)
66     common_cflags += [ cflag ]
67   endif
68 endforeach
70 # Linker flags
71 if host_machine.system() == 'linux'
72   foreach ldflag: [ '-Wl,-Bsymbolic', '-Wl,-z,relro', '-Wl,-z,now', ]
73     if cc.has_argument(ldflag)
74       common_ldflags += [ ldflag ]
75     endif
76   endforeach
77 endif
79 # Maintain compatibility with autotools on macOS
80 if host_machine.system() == 'darwin'
81   common_ldflags += [ '-compatibility_version=1', '-current_version=1.0', ]
82 endif
84 # Functions
85 checked_funcs = [
86   'bind_textdomain_codeset',
89 foreach f: checked_funcs
90   if cc.has_function(f)
91     atk_conf.set('HAVE_' + f.underscorify().to_upper(), 1)
92   endif
93 endforeach
95 # Dependencies
96 gobject_req_version = '>= 2.31.2'
98 gobject_dep = dependency('gobject-2.0', version: gobject_req_version)
100 # Compat variables for pkgconfig
101 pkgconf = configuration_data()
102 pkgconf.set('prefix', atk_prefix)
103 pkgconf.set('exec_prefix', atk_prefix)
104 pkgconf.set('libdir', atk_libdir)
105 pkgconf.set('includedir', atk_includedir)
106 pkgconf.set('VERSION', meson.project_version())
107 pkgconf.set('ATK_API_VERSION', atk_api_version)
108 pkgconf.set('srcdir', '.')
110 foreach pkg: [ 'atk.pc', ]
111   configure_file(input: pkg + '.in',
112                  output: pkg,
113                  configuration: pkgconf,
114                  install: true,
115                  install_dir: join_paths(atk_libdir, 'pkgconfig'))
116 endforeach
118 gnome = import('gnome')
120 # Internal configuration header
121 configure_file(output: 'config.h', configuration: atk_conf)
123 root_inc = include_directories('.')
125 subdir('atk')
126 subdir('tests')
127 subdir('po')
129 if get_option('enable_docs')
130   subdir('docs')
131 endif