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)