xref: /OK3568_Linux_fs/external/xserver/test/sync/meson.build (revision 4882a59341e53eb6f0b4789bf948001014eff981)
1xcb_dep = dependency('xcb', required: false)
2xcb_sync_dep = dependency('xcb-sync', required: false)
3
4if get_option('xvfb')
5    if xcb_dep.found() and xcb_sync_dep.found()
6        sync = executable('sync', 'sync.c', dependencies: [xcb_dep, xcb_sync_dep])
7        test('sync', simple_xinit, args: [sync, '--', xvfb_server])
8    endif
9endif
10