xserver

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

meson.build (624B)


      1 srcs_randr = [
      2     'randr.c',
      3     'rrcrtc.c',
      4     'rrdispatch.c',
      5     'rrinfo.c',
      6     'rrlease.c',
      7     'rrmode.c',
      8     'rrmonitor.c',
      9     'rroutput.c',
     10     'rrpointer.c',
     11     'rrproperty.c',
     12     'rrprovider.c',
     13     'rrproviderproperty.c',
     14     'rrscreen.c',
     15     'rrsdispatch.c',
     16     'rrtransform.c',
     17 ]
     18 
     19 hdrs_randr = [
     20     'randrstr.h',
     21     'rrtransform.h',
     22 ]
     23 
     24 if build_xinerama
     25     srcs_randr += 'rrxinerama.c'
     26 endif
     27 
     28 libxserver_randr = static_library('libxserver_randr',
     29     srcs_randr,
     30     include_directories: inc,
     31     dependencies: common_dep,
     32 )
     33 
     34 if build_xorg
     35     install_data(hdrs_randr, install_dir: xorgsdkdir)
     36 endif