xserver

xserver with xephyr scale patch
git clone https://git.neptards.moe/u3shit/xserver.git
Log | Files | Refs | README | LICENSE

meson.build (546B)


      1 srcs = [
      2     'InitInput.c',
      3     'InitOutput.c',
      4     '../../mi/miinitext.c',
      5     '../../mi/miinitext.h',
      6 ]
      7 
      8 xvfb_server = executable(
      9     'Xvfb',
     10     srcs,
     11     include_directories: inc,
     12     dependencies: common_dep,
     13     link_with: [
     14         libxserver_main,
     15         libxserver_fb,
     16         libxserver,
     17         libxserver_xkb_stubs,
     18         libxserver_xi_stubs,
     19         libxserver_glx,
     20         libglxvnd,
     21     ],
     22     install: true,
     23 )
     24 
     25 install_man(configure_file(
     26     input: 'man/Xvfb.man',
     27     output: 'Xvfb.1',
     28     configuration: manpage_config,
     29 ))