Edit

IABSD.fr/xenocara/xserver/hw/xfree86/parser/meson.build

Branch :

  • Show log

    Commit

  • Author : matthieu
    Date : 2023-01-22 09:21:08
    Hash : 8c4424dd
    Message : Add back the meson build system to xserver. Not having those file only create noise when merging upstream releases.

  • xserver/hw/xfree86/parser/meson.build
  • srcs_xorg_parser = [
        'Device.c',
        'Files.c',
        'Flags.c',
        'Input.c',
        'InputClass.c',
        'OutputClass.c',
        'Layout.c',
        'Module.c',
        'Video.c',
        'Monitor.c',
        'Pointer.c',
        'Screen.c',
        'Vendor.c',
        'read.c',
        'scan.c',
        'write.c',
        'DRI.c',
        'Extensions.c',
    ]
    
    xorg_parser = static_library('xorg_parser',
        srcs_xorg_parser,
        include_directories: [inc, xorg_inc],
        dependencies: common_dep,
        c_args: [
            xorg_c_args,
            '-DDATADIR="' + join_paths(get_option('prefix'), get_option('datadir')) + '"',
        ],
    )
    
    install_data(['xf86Parser.h', 'xf86Optrec.h'], install_dir: xorgsdkdir)