meson: Build libshadowfb.so

Reviewed-by: Eric Anholt <eric@anholt.net>
Signed-off-by: Adam Jackson <ajax@redhat.com>
This commit is contained in:
Adam Jackson 2017-04-27 13:19:11 -04:00
parent bdce17959c
commit 2f1a1be46c
2 changed files with 11 additions and 0 deletions

View File

@ -50,6 +50,7 @@ subdir('modes')
subdir('os-support')
subdir('parser')
subdir('ramdac')
subdir('shadowfb')
if build_vgahw
subdir('vgahw')
endif

View File

@ -0,0 +1,10 @@
shared_module('shadowfb',
[ 'shadowfb.c', 'sfbmodule.c'],
include_directories: [ inc, xorg_inc ],
dependencies: common_dep,
c_args: xorg_c_args,
install: true,
install_dir: module_dir,
)
install_data('shadowfb.h', install_dir: xorgsdkdir)