meson: Build libshadowfb.so
Reviewed-by: Eric Anholt <eric@anholt.net> Signed-off-by: Adam Jackson <ajax@redhat.com>
This commit is contained in:
parent
bdce17959c
commit
2f1a1be46c
|
@ -50,6 +50,7 @@ subdir('modes')
|
||||||
subdir('os-support')
|
subdir('os-support')
|
||||||
subdir('parser')
|
subdir('parser')
|
||||||
subdir('ramdac')
|
subdir('ramdac')
|
||||||
|
subdir('shadowfb')
|
||||||
if build_vgahw
|
if build_vgahw
|
||||||
subdir('vgahw')
|
subdir('vgahw')
|
||||||
endif
|
endif
|
||||||
|
|
|
@ -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)
|
Loading…
Reference in New Issue