xserver

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

meson.build (432B)


      1 glamoregl_src = [
      2     '../../../glamor/glamor_egl.c',
      3     '../../../glamor/glamor_eglmodule.c',
      4     'glamor_xf86_xv.c',
      5 ]
      6 
      7 shared_module(
      8     'glamoregl',
      9     glamoregl_src,
     10 
     11     include_directories: [inc, xorg_inc],
     12     c_args: xorg_c_args,
     13     dependencies: [
     14         common_dep,
     15         dependency('libdrm', version: '>= 2.4.46'),
     16         gbm_dep,
     17     ],
     18     link_with: glamor,
     19 
     20     install: true,
     21     install_dir: module_dir,
     22 )