mirror of
https://github.com/X11Libre/xserver.git
synced 2026-04-14 17:18:09 +00:00
36 lines
672 B
Meson
36 lines
672 B
Meson
srcs = [
|
|
'fbdev.c',
|
|
'fbinit.c',
|
|
'../../stubs/ddxBeforeReset.c',
|
|
]
|
|
|
|
xfbdev_server = executable(
|
|
'Xfbdev',
|
|
srcs,
|
|
include_directories: [
|
|
inc,
|
|
include_directories('../src'),
|
|
include_directories('../linux'),
|
|
],
|
|
dependencies: common_dep,
|
|
link_with: [
|
|
libxserver_main,
|
|
kdrive,
|
|
linux,
|
|
libxserver_fb,
|
|
libxserver,
|
|
libxserver_glx,
|
|
libxserver_config,
|
|
libxserver_xkb_stubs,
|
|
libglxvnd,
|
|
],
|
|
install: true,
|
|
)
|
|
|
|
xfbdev_man = configure_file(
|
|
input: 'Xfbdev.man',
|
|
output: 'Xfbdev.1',
|
|
configuration: manpage_config,
|
|
)
|
|
install_man(xfbdev_man)
|