xserver

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

meson.build (812B)


      1 srcs_miext_shadow = [
      2     'shadow.c',
      3     'sh3224.c',
      4     'shafb4.c',
      5     'shafb8.c',
      6     'shiplan2p4.c',
      7     'shiplan2p8.c',
      8     'shpacked.c',
      9     'shplanar8.c',
     10     'shplanar.c',
     11     'shrot16pack_180.c',
     12     'shrot16pack_270.c',
     13     'shrot16pack_270YX.c',
     14     'shrot16pack_90.c',
     15     'shrot16pack_90YX.c',
     16     'shrot16pack.c',
     17     'shrot32pack_180.c',
     18     'shrot32pack_270.c',
     19     'shrot32pack_90.c',
     20     'shrot32pack.c',
     21     'shrot8pack_180.c',
     22     'shrot8pack_270.c',
     23     'shrot8pack_90.c',
     24     'shrot8pack.c',
     25     'shrotate.c',
     26 ]
     27 
     28 hdrs_miext_shadow = [
     29     'shadow.h',
     30 ]
     31 
     32 libxserver_miext_shadow = static_library('libxserver_miext_shadow',
     33     srcs_miext_shadow,
     34     include_directories: inc,
     35     dependencies: common_dep,
     36 )
     37 
     38 if build_xorg
     39     install_data(hdrs_miext_shadow, install_dir: xorgsdkdir)
     40 endif