forked from AuroraMiddleware/gtk
7c8a16812e
This code is more or less a direct copy of what we had in gtkpango.c in 3.x.
19 lines
302 B
Meson
19 lines
302 B
Meson
gtk_a11y_src = []
|
|
gtk_a11y_backends = []
|
|
|
|
if os_unix
|
|
gtk_a11y_backends += 'atspi'
|
|
endif
|
|
|
|
if gtk_a11y_backends.contains('atspi')
|
|
subdir('atspi')
|
|
|
|
gtk_a11y_src += files([
|
|
'gtkatspicache.c',
|
|
'gtkatspicontext.c',
|
|
'gtkatspiroot.c',
|
|
'gtkatspiutils.c',
|
|
'gtkatspipango.c',
|
|
])
|
|
endif
|