xserver

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

meson.build (477B)


      1 srcs_miext_sync = [
      2     'misync.c',
      3     'misyncfd.c',
      4 ]
      5 
      6 hdrs_miext_sync = [
      7     'misync.h',
      8     'misyncfd.h',
      9     'misyncshm.h',
     10     'misyncstr.h',
     11 ]
     12 
     13 if build_dri3
     14     srcs_miext_sync += 'misyncshm.c'
     15 endif
     16 
     17 libxserver_miext_sync = static_library('libxserver_miext_sync',
     18     srcs_miext_sync,
     19     include_directories: inc,
     20     dependencies: [
     21         common_dep,
     22         xshmfence_dep,
     23     ],
     24 )
     25 
     26 if build_xorg
     27     install_data(hdrs_miext_sync, install_dir: xorgsdkdir)
     28 endif