Edit

IABSD.fr/xenocara/xserver/test/bigreq/meson.build

Branch :

  • Show log

    Commit

  • Author : matthieu
    Date : 2023-01-22 09:21:08
    Hash : 8c4424dd
    Message : Add back the meson build system to xserver. Not having those file only create noise when merging upstream releases.

  • xserver/test/bigreq/meson.build
  • xcb_dep = dependency('xcb', required: false)
    xcb_xinput_dep = dependency('xcb-xinput', required: false)
    
    if get_option('xvfb')
        if xcb_dep.found() and xcb_xinput_dep.found()
            requestlength = executable('request-length', 'request-length.c',
                                       dependencies: [xcb_dep, xcb_xinput_dep])
            test('request-length', simple_xinit, args: [requestlength, '--', xvfb_server])
        endif
    endif