mirror of
https://gitlab.freedesktop.org/xorg/xserver.git
synced 2026-05-08 11:28:03 +02:00
meson: Build libfbdevhw.so
Reviewed-by: Eric Anholt <eric@anholt.net> Signed-off-by: Adam Jackson <ajax@redhat.com>
This commit is contained in:
parent
6413a87bcd
commit
5c7d92362b
2 changed files with 17 additions and 0 deletions
16
hw/xfree86/fbdevhw/meson.build
Normal file
16
hw/xfree86/fbdevhw/meson.build
Normal file
|
|
@ -0,0 +1,16 @@
|
||||||
|
if host_machine.system() == 'linux'
|
||||||
|
srcs_fbdevhw = 'fbdevhw.c'
|
||||||
|
else
|
||||||
|
srcs_fbdevhw = 'fbdevhwstubs.c'
|
||||||
|
endif
|
||||||
|
|
||||||
|
shared_module('fbdevhw',
|
||||||
|
srcs_fbdevhw,
|
||||||
|
include_directories: [ inc, xorg_inc ],
|
||||||
|
dependencies: common_dep,
|
||||||
|
c_args: xorg_c_args,
|
||||||
|
install: true,
|
||||||
|
install_dir: module_dir,
|
||||||
|
)
|
||||||
|
|
||||||
|
install_data('fbdevhw.h', install_dir: xorgsdkdir)
|
||||||
|
|
@ -27,6 +27,7 @@ subdir('common')
|
||||||
subdir('ddc')
|
subdir('ddc')
|
||||||
subdir('dixmods')
|
subdir('dixmods')
|
||||||
subdir('exa')
|
subdir('exa')
|
||||||
|
subdir('fbdevhw')
|
||||||
if gbm_dep.found()
|
if gbm_dep.found()
|
||||||
subdir('glamor_egl')
|
subdir('glamor_egl')
|
||||||
endif
|
endif
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue