mirror of
https://github.com/X11Libre/xserver.git
synced 2026-03-24 05:54:08 +00:00
32 lines
602 B
Meson
32 lines
602 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',
|
|
'patterns.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')) + '"',
|
|
],
|
|
)
|