From 2f1a1be46c3366a47657fe7550bc59fb99acf91c Mon Sep 17 00:00:00 2001 From: Adam Jackson Date: Thu, 27 Apr 2017 13:19:11 -0400 Subject: [PATCH] meson: Build libshadowfb.so Reviewed-by: Eric Anholt Signed-off-by: Adam Jackson --- hw/xfree86/meson.build | 1 + hw/xfree86/shadowfb/meson.build | 10 ++++++++++ 2 files changed, 11 insertions(+) create mode 100644 hw/xfree86/shadowfb/meson.build diff --git a/hw/xfree86/meson.build b/hw/xfree86/meson.build index a8f51da6a..0599706c5 100644 --- a/hw/xfree86/meson.build +++ b/hw/xfree86/meson.build @@ -50,6 +50,7 @@ subdir('modes') subdir('os-support') subdir('parser') subdir('ramdac') +subdir('shadowfb') if build_vgahw subdir('vgahw') endif diff --git a/hw/xfree86/shadowfb/meson.build b/hw/xfree86/shadowfb/meson.build new file mode 100644 index 000000000..0470ecbb5 --- /dev/null +++ b/hw/xfree86/shadowfb/meson.build @@ -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)