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/damage/meson.build

10 lines
404 B
Meson

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