Lines Matching refs:get_option
77 if not get_option('freetype').disabled()
88 freetype_dep = dependency('freetype2', required: get_option('freetype'),
94 glib_dep = dependency('glib-2.0', required: get_option('glib'),
96 gobject_dep = dependency('gobject-2.0', required: get_option('gobject'),
98 graphite2_dep = dependency('graphite2', required: get_option('graphite'))
101 if not get_option('icu').disabled()
112 if get_option('buildtype') == 'debug'
120 icu_dep = dependency('icu-uc', required: get_option('icu'))
126 if not get_option('cairo').disabled()
148 cairo_dep = dependency('cairo', fallback: 'cairo', required: get_option('cairo'))
149 cairo_ft_dep = dependency('cairo-ft', fallback: 'cairo', required: get_option('cairo'))
150 elif get_option('cairo').enabled()
157 chafa_dep = dependency('chafa', version: '>= 1.6.0', required: get_option('chafa'))
198 if get_option('icu_builtin')
202 if get_option('experimental_api')
226 if host_machine.system() == 'windows' and not get_option('gdi').disabled()
227 if (get_option('directwrite').enabled() and
234 dep = cpp.find_library(usplib, required: get_option('gdi'))
247 if host_machine.system() == 'windows' and not get_option('directwrite').disabled()
248 if get_option('directwrite').enabled() and not cpp.has_header('dwrite_1.h')
252 directwrite_dep = cpp.find_library('dwrite', required: get_option('directwrite'))
261 if host_machine.system() == 'darwin' and not get_option('coretext').disabled()
275 elif get_option('coretext').enabled()
340 if not get_option('tests').disabled()
344 if not get_option('benchmark').disabled()
348 if not get_option('docs').disabled()
356 {'prefix': get_option('prefix'),
357 'bindir': get_option('bindir'),
358 'libdir': get_option('libdir'),
359 'includedir': get_option('includedir'),
360 'datadir': get_option('datadir'),
389 {'Tests': get_option('tests').enabled(),
390 'Benchmark': get_option('benchmark').enabled(),