Mathieu Duponchelle | 920efc0 | 2018-05-17 01:28:53 +0200 | [diff] [blame] | 1 | project('harfbuzz', 'c', 'cpp', |
Ebrahim Byagowi | f756267 | 2020-05-21 17:01:04 +0430 | [diff] [blame] | 2 | meson_version: '>= 0.53.0', |
Ebrahim Byagowi | 31218b4 | 2020-03-11 22:27:32 +0330 | [diff] [blame] | 3 | default_options : ['cpp_std=c++11'], |
Ebrahim Byagowi | fb46a32 | 2020-06-03 12:54:26 +0430 | [diff] [blame^] | 4 | version: '2.6.7') |
Mathieu Duponchelle | 920efc0 | 2018-05-17 01:28:53 +0200 | [diff] [blame] | 5 | |
Ebrahim Byagowi | 466dbaa | 2020-03-24 19:52:43 +0430 | [diff] [blame] | 6 | warning('Meson is not our main build system yet, don\'t use it for packaging HarfBuzz for *nix distros for now') |
| 7 | |
Tim-Philipp Müller | 535186f | 2018-12-03 20:51:06 +0100 | [diff] [blame] | 8 | hb_version_arr = meson.project_version().split('.') |
| 9 | hb_version_major = hb_version_arr[0].to_int() |
| 10 | hb_version_minor = hb_version_arr[1].to_int() |
| 11 | hb_version_micro = hb_version_arr[2].to_int() |
| 12 | |
| 13 | # libtool versioning |
| 14 | hb_version_int = hb_version_major*10000 + hb_version_minor*100 + hb_version_micro |
| 15 | if hb_version_minor % 2 == 1 |
| 16 | hb_libtool_revision = 0 # for unstable releases |
| 17 | else |
| 18 | hb_libtool_revision = hb_version_micro # for stable releases |
| 19 | endif |
| 20 | hb_libtool_age = hb_version_int - hb_libtool_revision |
| 21 | hb_libtool_current = hb_libtool_age |
| 22 | hb_libtool_version_info = '@0@:@1@:@2@'.format(hb_libtool_current, hb_libtool_revision, hb_libtool_age) |
| 23 | |
Mathieu Duponchelle | 484313f | 2018-06-05 02:15:43 +0200 | [diff] [blame] | 24 | pkgmod = import('pkgconfig') |
Mathieu Duponchelle | 920efc0 | 2018-05-17 01:28:53 +0200 | [diff] [blame] | 25 | cpp = meson.get_compiler('cpp') |
| 26 | |
Tim-Philipp Müller | 4a47f1a | 2018-12-01 11:05:27 +0000 | [diff] [blame] | 27 | if cpp.get_id() == 'msvc' |
| 28 | # Ignore several spurious warnings for things HarfBuzz does very commonly. |
| 29 | # If a warning is completely useless and spammy, use '/wdXXXX' to suppress it |
| 30 | # If a warning is harmless but hard to fix, use '/woXXXX' so it's shown once |
| 31 | # NOTE: Only add warnings here if you are sure they're spurious |
| 32 | msvc_args = [ |
| 33 | '/wd4018', # implicit signed/unsigned conversion |
| 34 | '/wd4146', # unary minus on unsigned (beware INT_MIN) |
| 35 | '/wd4244', # lossy type conversion (e.g. double -> int) |
| 36 | '/wd4305', # truncating type conversion (e.g. double -> float) |
| 37 | cpp.get_supported_arguments(['/utf-8']), # set the input encoding to utf-8 |
| 38 | ] |
Tim-Philipp Müller | bb8aaa3 | 2020-03-14 01:05:38 +0000 | [diff] [blame] | 39 | add_project_arguments(msvc_args, language : ['c', 'cpp']) |
Tim-Philipp Müller | 4a47f1a | 2018-12-01 11:05:27 +0000 | [diff] [blame] | 40 | # Disable SAFESEH with MSVC for libs that use external deps that are built with MinGW |
| 41 | # noseh_link_args = ['/SAFESEH:NO'] |
| 42 | endif |
| 43 | |
Tim-Philipp Müller | bb8aaa3 | 2020-03-14 01:05:38 +0000 | [diff] [blame] | 44 | add_project_arguments(cpp.get_supported_arguments([ |
Ebrahim Byagowi | 365d2d3 | 2020-03-11 20:16:36 +0330 | [diff] [blame] | 45 | '-fno-rtti', |
| 46 | '-fno-exceptions', |
| 47 | '-fno-threadsafe-statics', |
| 48 | '-fvisibility-inlines-hidden', # maybe shouldn't be applied for mingw |
| 49 | ]), language : 'cpp') |
| 50 | |
| 51 | if host_machine.cpu_family() == 'arm' and cpp.alignment('struct { char c; }') != 1 |
| 52 | if cpp.has_argument('-mstructure-size-boundary=8') |
Tim-Philipp Müller | bb8aaa3 | 2020-03-14 01:05:38 +0000 | [diff] [blame] | 53 | add_project_arguments('-mstructure-size-boundary=8', language : 'cpp') |
Ebrahim Byagowi | 365d2d3 | 2020-03-11 20:16:36 +0330 | [diff] [blame] | 54 | endif |
| 55 | endif |
| 56 | |
Mathieu Duponchelle | 920efc0 | 2018-05-17 01:28:53 +0200 | [diff] [blame] | 57 | check_headers = [ |
| 58 | ['unistd.h'], |
| 59 | ['sys/mman.h'], |
Mathieu Duponchelle | 920efc0 | 2018-05-17 01:28:53 +0200 | [diff] [blame] | 60 | ['stdbool.h'], |
| 61 | ] |
| 62 | |
| 63 | check_funcs = [ |
| 64 | ['atexit'], |
| 65 | ['mprotect'], |
| 66 | ['sysconf'], |
| 67 | ['getpagesize'], |
| 68 | ['mmap'], |
| 69 | ['isatty'], |
Ebrahim Byagowi | 1c3f80b | 2020-03-11 19:29:47 +0330 | [diff] [blame] | 70 | ['roundf'], |
Mathieu Duponchelle | 920efc0 | 2018-05-17 01:28:53 +0200 | [diff] [blame] | 71 | ] |
| 72 | |
Chun-wei Fan | 733414b | 2020-03-13 16:15:21 +0800 | [diff] [blame] | 73 | freetype_dep = dependency('freetype2', required: false) |
| 74 | |
| 75 | if not freetype_dep.found() and cpp.get_id() == 'msvc' |
| 76 | if cpp.has_header('ft2build.h') |
| 77 | freetype_dep = cpp.find_library('freetype', required: false) |
| 78 | endif |
| 79 | endif |
| 80 | |
| 81 | if not freetype_dep.found() and get_option('freetype').enabled() |
| 82 | freetype_dep = dependency('freetype2', fallback: ['freetype2', 'freetype_dep']) |
| 83 | endif |
| 84 | |
Tim-Philipp Müller | 49ba211 | 2018-11-12 15:36:27 +0000 | [diff] [blame] | 85 | glib_dep = dependency('glib-2.0', required: get_option('glib'), |
Nirbheek Chauhan | f65def4 | 2018-10-12 19:41:49 +0530 | [diff] [blame] | 86 | fallback: ['glib', 'libglib_dep']) |
Tim-Philipp Müller | 49ba211 | 2018-11-12 15:36:27 +0000 | [diff] [blame] | 87 | gobject_dep = dependency('gobject-2.0', required: get_option('gobject'), |
Nirbheek Chauhan | f65def4 | 2018-10-12 19:41:49 +0530 | [diff] [blame] | 88 | fallback: ['glib', 'libgobject_dep']) |
Chun-wei Fan | 9d0e6ae | 2020-03-13 16:56:55 +0800 | [diff] [blame] | 89 | cairo_dep = dependency('cairo', required: false) |
Tim-Philipp Müller | 49ba211 | 2018-11-12 15:36:27 +0000 | [diff] [blame] | 90 | fontconfig_dep = dependency('fontconfig', required: get_option('fontconfig'), |
Nirbheek Chauhan | f65def4 | 2018-10-12 19:41:49 +0530 | [diff] [blame] | 91 | fallback: ['fontconfig', 'fontconfig_dep']) |
Tim-Philipp Müller | 49ba211 | 2018-11-12 15:36:27 +0000 | [diff] [blame] | 92 | graphite2_dep = dependency('graphite2', required: get_option('graphite')) |
Christoph Reiter | 8ae06c9 | 2020-04-18 20:22:45 +0200 | [diff] [blame] | 93 | icu_dep = dependency('icu-uc', required: false) |
Mathieu Duponchelle | fce88f9 | 2018-05-17 16:20:10 +0200 | [diff] [blame] | 94 | m_dep = cpp.find_library('m', required: false) |
Mathieu Duponchelle | 920efc0 | 2018-05-17 01:28:53 +0200 | [diff] [blame] | 95 | |
Christoph Reiter | 8ae06c9 | 2020-04-18 20:22:45 +0200 | [diff] [blame] | 96 | if not icu_dep.found() and get_option('icu').enabled() |
| 97 | icu_dep = dependency('icu-uc', required: cpp.get_id() != 'msvc') |
| 98 | endif |
| 99 | |
Chun-wei Fan | 5efce60 | 2020-03-13 16:40:20 +0800 | [diff] [blame] | 100 | if not icu_dep.found() and cpp.get_id() == 'msvc' |
| 101 | if cpp.has_header('unicode/uchar.h') and \ |
| 102 | cpp.has_header('unicode/unorm2.h') and \ |
| 103 | cpp.has_header('unicode/ustring.h') and \ |
| 104 | cpp.has_header('unicode/utf16.h') and \ |
| 105 | cpp.has_header('unicode/uversion.h') and \ |
| 106 | cpp.has_header('unicode/uscript.h') |
| 107 | if get_option('buildtype') == 'debug' |
| 108 | icu_dep = cpp.find_library('icuucd', required: get_option('icu')) |
| 109 | else |
| 110 | icu_dep = cpp.find_library('icuuc', required: get_option('icu')) |
| 111 | endif |
| 112 | else |
| 113 | if get_option('icu').enabled() |
| 114 | error('ICU headers and libraries must be present to build ICU support') |
| 115 | endif |
| 116 | endif |
| 117 | endif |
| 118 | |
Chun-wei Fan | 9d0e6ae | 2020-03-13 16:56:55 +0800 | [diff] [blame] | 119 | if not cairo_dep.found() and cpp.get_id() == 'msvc' |
| 120 | if cpp.has_header('cairo.h') |
| 121 | cairo_dep = cpp.find_library('cairo') |
| 122 | endif |
| 123 | endif |
| 124 | |
| 125 | if not cairo_dep.found() and get_option('cairo').enabled() |
| 126 | cairo_dep = dependency('cairo', fallback: ['cairo', 'libcairo_dep']) |
| 127 | endif |
| 128 | |
Nirbheek Chauhan | f65def4 | 2018-10-12 19:41:49 +0530 | [diff] [blame] | 129 | # Ensure that cairo-ft is fetched from the same library as cairo itself |
| 130 | if cairo_dep.found() |
| 131 | if cairo_dep.type_name() == 'pkgconfig' |
Tim-Philipp Müller | 49ba211 | 2018-11-12 15:36:27 +0000 | [diff] [blame] | 132 | cairo_ft_dep = dependency('cairo-ft', required: get_option('cairo')) |
Nirbheek Chauhan | f65def4 | 2018-10-12 19:41:49 +0530 | [diff] [blame] | 133 | else |
Chun-wei Fan | 9d0e6ae | 2020-03-13 16:56:55 +0800 | [diff] [blame] | 134 | if cpp.has_header('cairo-ft.h') and \ |
| 135 | cpp.has_function('cairo_ft_font_face_create_for_ft_face', dependencies: cairo_dep) |
| 136 | cairo_ft_dep = cairo_dep |
Ebrahim Byagowi | 6058ede | 2020-06-01 12:58:31 +0430 | [diff] [blame] | 137 | else |
| 138 | # Not-found dependency |
| 139 | cairo_ft_dep = dependency('', required: false) |
Chun-wei Fan | 9d0e6ae | 2020-03-13 16:56:55 +0800 | [diff] [blame] | 140 | endif |
Nirbheek Chauhan | f65def4 | 2018-10-12 19:41:49 +0530 | [diff] [blame] | 141 | endif |
| 142 | else |
| 143 | # Not-found dependency |
| 144 | cairo_ft_dep = dependency('', required: false) |
| 145 | endif |
| 146 | |
Mathieu Duponchelle | fce88f9 | 2018-05-17 16:20:10 +0200 | [diff] [blame] | 147 | deps = [] |
Mathieu Duponchelle | 920efc0 | 2018-05-17 01:28:53 +0200 | [diff] [blame] | 148 | |
| 149 | conf = configuration_data() |
Tim-Philipp Müller | 618584e | 2018-11-14 20:19:36 +0000 | [diff] [blame] | 150 | incconfig = include_directories('.') |
Tim-Philipp Müller | a3892be | 2020-03-14 01:08:15 +0000 | [diff] [blame] | 151 | |
| 152 | add_project_arguments('-DHAVE_CONFIG_H', language: ['c', 'cpp']) |
Mathieu Duponchelle | 920efc0 | 2018-05-17 01:28:53 +0200 | [diff] [blame] | 153 | |
| 154 | warn_cflags = [ |
| 155 | '-Wno-non-virtual-dtor', |
| 156 | ] |
| 157 | |
Tim-Philipp Müller | a3892be | 2020-03-14 01:08:15 +0000 | [diff] [blame] | 158 | cpp_args = cpp.get_supported_arguments(warn_cflags) |
Mathieu Duponchelle | 920efc0 | 2018-05-17 01:28:53 +0200 | [diff] [blame] | 159 | |
Mathieu Duponchelle | fce88f9 | 2018-05-17 16:20:10 +0200 | [diff] [blame] | 160 | if m_dep.found() |
| 161 | deps += [m_dep] |
| 162 | endif |
| 163 | |
Mathieu Duponchelle | 920efc0 | 2018-05-17 01:28:53 +0200 | [diff] [blame] | 164 | if glib_dep.found() |
| 165 | conf.set('HAVE_GLIB', 1) |
| 166 | deps += [glib_dep] |
| 167 | endif |
| 168 | |
| 169 | if gobject_dep.found() |
| 170 | conf.set('HAVE_GOBJECT', 1) |
| 171 | deps += [gobject_dep] |
| 172 | endif |
| 173 | |
| 174 | if cairo_dep.found() |
| 175 | conf.set('HAVE_CAIRO', 1) |
| 176 | deps += [cairo_dep] |
| 177 | endif |
| 178 | |
| 179 | if cairo_ft_dep.found() |
| 180 | conf.set('HAVE_CAIRO_FT', 1) |
| 181 | deps += [cairo_ft_dep] |
| 182 | endif |
| 183 | |
| 184 | if graphite2_dep.found() |
| 185 | conf.set('HAVE_GRAPHITE2', 1) |
| 186 | deps += [graphite2_dep] |
| 187 | endif |
| 188 | |
| 189 | if icu_dep.found() |
| 190 | conf.set('HAVE_ICU', 1) |
Ebrahim Byagowi | c6b3f73 | 2020-04-19 00:54:24 +0430 | [diff] [blame] | 191 | endif |
| 192 | |
Ebrahim Byagowi | cc53fd1 | 2020-05-21 19:33:18 +0430 | [diff] [blame] | 193 | if get_option('icu_builtin') |
Mathieu Duponchelle | 920efc0 | 2018-05-17 01:28:53 +0200 | [diff] [blame] | 194 | conf.set('HAVE_ICU_BUILTIN', 1) |
Mathieu Duponchelle | 920efc0 | 2018-05-17 01:28:53 +0200 | [diff] [blame] | 195 | endif |
| 196 | |
Ebrahim Byagowi | cc53fd1 | 2020-05-21 19:33:18 +0430 | [diff] [blame] | 197 | if get_option('experimental_api') |
Ebrahim Byagowi | 750bb73 | 2020-04-21 01:13:13 +0430 | [diff] [blame] | 198 | conf.set('HB_EXPERIMENTAL_API', 1) |
| 199 | endif |
| 200 | |
Mathieu Duponchelle | 920efc0 | 2018-05-17 01:28:53 +0200 | [diff] [blame] | 201 | if freetype_dep.found() |
| 202 | conf.set('HAVE_FREETYPE', 1) |
| 203 | deps += [freetype_dep] |
Mathieu Duponchelle | 04bcdb9 | 2018-06-05 20:59:29 +0200 | [diff] [blame] | 204 | check_freetype_funcs = [ |
| 205 | ['FT_Get_Var_Blend_Coordinates', {'deps': freetype_dep}], |
| 206 | ['FT_Set_Var_Blend_Coordinates', {'deps': freetype_dep}], |
| 207 | ['FT_Done_MM_Var', {'deps': freetype_dep}], |
| 208 | ] |
Mathieu Duponchelle | 920efc0 | 2018-05-17 01:28:53 +0200 | [diff] [blame] | 209 | |
| 210 | if freetype_dep.type_name() == 'internal' |
| 211 | foreach func: check_freetype_funcs |
| 212 | name = func[0] |
| 213 | conf.set('HAVE_@0@'.format(name.to_upper()), 1) |
| 214 | endforeach |
| 215 | else |
| 216 | check_funcs += check_freetype_funcs |
| 217 | endif |
| 218 | endif |
| 219 | |
| 220 | if fontconfig_dep.found() |
| 221 | conf.set('HAVE_FONTCONFIG', 1) |
| 222 | deps += [fontconfig_dep] |
| 223 | endif |
| 224 | |
Chun-wei Fan | 838346c | 2020-03-13 18:01:17 +0800 | [diff] [blame] | 225 | # GDI (uniscribe) (windows) |
| 226 | if host_machine.system() == 'windows' and not get_option('gdi').disabled() |
Tim-Philipp Müller | b7796a5 | 2018-11-12 16:56:56 +0000 | [diff] [blame] | 227 | # TODO: make nicer once we have https://github.com/mesonbuild/meson/issues/3940 |
| 228 | if cpp.has_header('usp10.h') and cpp.has_header('windows.h') |
| 229 | foreach usplib : ['usp10', 'gdi32', 'rpcrt4'] |
| 230 | deps += [cpp.find_library(usplib, required: true)] |
| 231 | endforeach |
| 232 | conf.set('HAVE_UNISCRIBE', 1) |
Chun-wei Fan | 838346c | 2020-03-13 18:01:17 +0800 | [diff] [blame] | 233 | conf.set('HAVE_GDI', 1) |
| 234 | elif get_option('gdi').enabled() |
| 235 | error('gdi was enabled explicitly, but some required headers are missing.') |
Tim-Philipp Müller | b7796a5 | 2018-11-12 16:56:56 +0000 | [diff] [blame] | 236 | endif |
| 237 | endif |
| 238 | |
Chun-wei Fan | 7baa8e0 | 2020-03-13 16:21:25 +0800 | [diff] [blame] | 239 | # DirectWrite (windows) |
Tim-Philipp Müller | 83ebbe4 | 2018-11-12 16:56:56 +0000 | [diff] [blame] | 240 | if host_machine.system() == 'windows' and not get_option('directwrite').disabled() |
Chun-wei Fan | 7baa8e0 | 2020-03-13 16:21:25 +0800 | [diff] [blame] | 241 | if cpp.has_header('dwrite_1.h') |
Tim-Philipp Müller | 83ebbe4 | 2018-11-12 16:56:56 +0000 | [diff] [blame] | 242 | deps += [cpp.find_library('dwrite', required: true)] |
| 243 | conf.set('HAVE_DIRECTWRITE', 1) |
| 244 | elif get_option('directwrite').enabled() |
| 245 | error('DirectWrite was enabled explicitly, but required header is missing.') |
| 246 | endif |
| 247 | endif |
| 248 | |
Tim-Philipp Müller | 4840c82 | 2018-11-12 16:56:56 +0000 | [diff] [blame] | 249 | # CoreText (macOS) - FIXME: untested |
| 250 | if host_machine.system() == 'darwin' and not get_option('coretext').disabled() |
| 251 | app_services_dep = dependency('appleframeworks', modules : ['ApplicationServices'], required: false) |
| 252 | if cpp.has_type('CTFontRef', prefix: '#include <ApplicationServices/ApplicationServices.h>', dependencies: app_services_dep) |
| 253 | deps += [app_services_dep] |
| 254 | conf.set('HAVE_CORETEXT', 1) |
| 255 | # On iOS CoreText and CoreGraphics are stand-alone frameworks |
| 256 | # Check for a different symbol to avoid getting cached result |
| 257 | else |
| 258 | coretext_dep = dependency('appleframeworks', modules : ['CoreText'], required: false) |
| 259 | coregraphics_dep = dependency('appleframeworks', modules : ['CoreGraphics'], required: false) |
| 260 | corefoundation_dep = dependency('appleframeworks', modules : ['CoreFoundation'], required: false) |
| 261 | if cpp.has_type('CTRunRef', prefix: '#include <CoreText/CoreText.h>', dependencies: [coretext_dep, coregraphics_dep, corefoundation_dep]) |
| 262 | deps += [coretext_dep, coregraphics_dep, corefoundation_dep] |
| 263 | conf.set('HAVE_CORETEXT', 1) |
| 264 | elif get_option('coretext').enabled() |
| 265 | error('CoreText was enabled explicitly, but required headers or frameworks are missing.') |
| 266 | endif |
| 267 | endif |
| 268 | endif |
| 269 | |
Tim-Philipp Müller | b7796a5 | 2018-11-12 16:56:56 +0000 | [diff] [blame] | 270 | # threads |
Mathieu Duponchelle | 920efc0 | 2018-05-17 01:28:53 +0200 | [diff] [blame] | 271 | if host_machine.system() != 'windows' |
| 272 | thread_dep = dependency('threads', required: false) |
| 273 | |
| 274 | if thread_dep.found() |
| 275 | conf.set('HAVE_PTHREAD', 1) |
| 276 | deps += [thread_dep] |
| 277 | else |
| 278 | check_headers += ['sched.h'] |
| 279 | check_funcs += ['sched_yield', {'link_with': 'rt'}] |
| 280 | endif |
| 281 | endif |
| 282 | |
Mathieu Duponchelle | 04bcdb9 | 2018-06-05 20:59:29 +0200 | [diff] [blame] | 283 | conf.set('HAVE_OT', 1) |
| 284 | conf.set('HAVE_FALLBACK', 1) |
Mathieu Duponchelle | 920efc0 | 2018-05-17 01:28:53 +0200 | [diff] [blame] | 285 | conf.set_quoted('PACKAGE_NAME', 'HarfBuzz') |
| 286 | conf.set_quoted('PACKAGE_VERSION', meson.project_version()) |
| 287 | |
| 288 | foreach check : check_headers |
| 289 | name = check[0] |
| 290 | |
| 291 | if cpp.has_header(name) |
| 292 | conf.set('HAVE_@0@'.format(name.to_upper().underscorify()), 1) |
| 293 | endif |
| 294 | endforeach |
| 295 | |
| 296 | foreach check : check_funcs |
| 297 | name = check[0] |
Mathieu Duponchelle | 04bcdb9 | 2018-06-05 20:59:29 +0200 | [diff] [blame] | 298 | opts = check.get(1, {}) |
Mathieu Duponchelle | 920efc0 | 2018-05-17 01:28:53 +0200 | [diff] [blame] | 299 | link_withs = opts.get('link_with', []) |
Mathieu Duponchelle | 04bcdb9 | 2018-06-05 20:59:29 +0200 | [diff] [blame] | 300 | check_deps = opts.get('deps', []) |
Mathieu Duponchelle | 920efc0 | 2018-05-17 01:28:53 +0200 | [diff] [blame] | 301 | extra_deps = [] |
| 302 | found = true |
| 303 | |
| 304 | # First try without linking |
| 305 | |
Mathieu Duponchelle | 04bcdb9 | 2018-06-05 20:59:29 +0200 | [diff] [blame] | 306 | found = cpp.has_function(name, dependencies: check_deps) |
Mathieu Duponchelle | 920efc0 | 2018-05-17 01:28:53 +0200 | [diff] [blame] | 307 | |
| 308 | if not found and link_withs.length() > 0 |
| 309 | found = true |
| 310 | |
| 311 | foreach link_with : link_withs |
| 312 | dep = cpp.find_library(link_with, required: false) |
| 313 | if dep.found() |
Ebrahim Byagowi | e8808c1 | 2020-03-24 19:15:09 +0430 | [diff] [blame] | 314 | extra_deps += dep |
Mathieu Duponchelle | 920efc0 | 2018-05-17 01:28:53 +0200 | [diff] [blame] | 315 | else |
Ebrahim Byagowi | e8808c1 | 2020-03-24 19:15:09 +0430 | [diff] [blame] | 316 | found = false |
Mathieu Duponchelle | 920efc0 | 2018-05-17 01:28:53 +0200 | [diff] [blame] | 317 | endif |
| 318 | endforeach |
| 319 | |
| 320 | if found |
Mathieu Duponchelle | 04bcdb9 | 2018-06-05 20:59:29 +0200 | [diff] [blame] | 321 | found = cpp.has_function(name, dependencies: check_deps + extra_deps) |
Mathieu Duponchelle | 920efc0 | 2018-05-17 01:28:53 +0200 | [diff] [blame] | 322 | endif |
| 323 | endif |
| 324 | |
| 325 | if found |
| 326 | deps += extra_deps |
| 327 | conf.set('HAVE_@0@'.format(name.to_upper()), 1) |
| 328 | endif |
| 329 | endforeach |
| 330 | |
Mathieu Duponchelle | 920efc0 | 2018-05-17 01:28:53 +0200 | [diff] [blame] | 331 | if cpp.links(files('meson-cc-tests/intel-atomic-primitives-test.c'), name: 'Intel atomics') |
| 332 | conf.set('HAVE_INTEL_ATOMIC_PRIMITIVES', 1) |
| 333 | endif |
| 334 | |
| 335 | if cpp.links(files('meson-cc-tests/solaris-atomic-operations.c'), name: 'Solaris atomic ops') |
| 336 | conf.set('HAVE_SOLARIS_ATOMIC_OPS', 1) |
| 337 | endif |
| 338 | |
| 339 | subdir('src') |
| 340 | subdir('util') |
Tim-Philipp Müller | 6147df3 | 2018-11-14 10:12:40 +0000 | [diff] [blame] | 341 | |
| 342 | if not get_option('tests').disabled() |
| 343 | subdir('test') |
| 344 | endif |
Mathieu Duponchelle | 920efc0 | 2018-05-17 01:28:53 +0200 | [diff] [blame] | 345 | |
Tim-Philipp Müller | 3dd7b21 | 2020-05-17 00:12:08 +0100 | [diff] [blame] | 346 | if not get_option('gtk_doc').disabled() |
| 347 | subdir('docs') |
| 348 | endif |
| 349 | |
Mathieu Duponchelle | 920efc0 | 2018-05-17 01:28:53 +0200 | [diff] [blame] | 350 | configure_file(output: 'config.h', configuration: conf) |
Ebrahim Byagowi | a9e8328 | 2020-05-21 16:28:24 +0430 | [diff] [blame] | 351 | |
| 352 | summary({'prefix': get_option('prefix'), |
| 353 | 'bindir': get_option('bindir'), |
| 354 | 'libdir': get_option('libdir'), |
| 355 | 'includedir': get_option('includedir'), |
| 356 | 'datadir': get_option('datadir'), |
| 357 | }, section: 'Directories') |
| 358 | summary({'Builtin': true, |
| 359 | 'Glib': conf.get('HAVE_GLIB', 0) == 1, |
| 360 | 'ICU': conf.get('HAVE_ICU', 0) == 1, |
| 361 | }, bool_yn: true, section: 'Unicode callbacks (you want at least one)') |
| 362 | summary({'FreeType': conf.get('HAVE_FREETYPE', 0) == 1, |
| 363 | }, bool_yn: true, section: 'Font callbacks (the more the merrier)') |
| 364 | summary({'Cairo': conf.get('HAVE_CAIRO', 0) == 1, |
| 365 | 'Fontconfig': conf.get('HAVE_FONTCONFIG', 0) == 1, |
| 366 | }, bool_yn: true, section: 'Tools used for command-line utilities') |
| 367 | summary({'Graphite2': conf.get('HAVE_GRAPHITE2', 0) == 1, |
| 368 | }, bool_yn: true, section: 'Additional shapers (the more the merrier)') |
| 369 | summary({'CoreText': conf.get('HAVE_CORETEXT', 0) == 1, |
| 370 | 'DirectWrite': conf.get('HAVE_DIRECTWRITE', 0) == 1, |
| 371 | 'GDI': conf.get('HAVE_GDI', 0) == 1, |
| 372 | 'Uniscribe': conf.get('HAVE_UNISCRIBE', 0) == 1, |
| 373 | }, bool_yn: true, section: 'Platform shapers (not normally needed)') |
| 374 | summary({'Documentation': conf.get('HAVE_GTK_DOC', 0) == 1, |
| 375 | 'GObject bindings': conf.get('HAVE_GOBJECT', 0) == 1, |
| 376 | 'Introspection': conf.get('HAVE_INTROSPECTION', 0) == 1, |
| 377 | }, bool_yn: true, section: 'Other features') |