xserver/hw/xfree86/parser/meson.build
Alan Coopersmith 5106461e31 meson: replace join_paths() with / operator
Requires meson 0.49.0, well below our current minimum of 0.60.0

Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
Part-of: <https://gitlab.freedesktop.org/xorg/xserver/-/merge_requests/2150>
2026-03-28 10:02:41 -07:00

32 lines
648 B
Meson

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="' + (get_option('prefix') / get_option('datadir')) + '"',
],
)
install_data(['xf86Parser.h', 'xf86Optrec.h'], install_dir: xorgsdkdir)