xserver-multidpi/test/sync/meson.build

10 lines
338 B
Meson
Raw Normal View History

xcb_dep = dependency('xcb', required: false)
xcb_sync_dep = dependency('xcb-sync', required: false)
if get_option('xvfb')
if xcb_dep.found() and xcb_sync_dep.found()
sync = executable('sync', 'sync.c', dependencies: [xcb_dep, xcb_sync_dep])
test('sync', simple_xinit, args: [sync, '--', xvfb_server])
endif
endif