xserver

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

meson.build (485B)


      1 srcs_exa = [
      2     'exa.c',
      3     'exa_classic.c',
      4     'exa_migration_classic.c',
      5     'exa_driver.c',
      6     'exa_mixed.c',
      7     'exa_migration_mixed.c',
      8     'exa_accel.c',
      9     'exa_glyphs.c',
     10     'exa_offscreen.c',
     11     'exa_render.c',
     12     'exa_unaccel.c',
     13 ]
     14 
     15 libxserver_exa = static_library('libxserver_exa',
     16     srcs_exa,
     17     include_directories: inc,
     18     dependencies: common_dep,
     19     c_args: '-DHAVE_XORG_CONFIG_H'
     20 )
     21 
     22 if build_xorg
     23     install_data('exa.h', install_dir: xorgsdkdir)
     24 endif