You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
xserver/test/sync/meson.build

10 lines
338 B
Meson

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