meson: Build libvbe.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:23:56 -04:00
parent 2f1a1be46c
commit 59554eaa6c
3 changed files with 14 additions and 0 deletions

View File

@ -51,6 +51,9 @@ subdir('os-support')
subdir('parser')
subdir('ramdac')
subdir('shadowfb')
if build_vbe
subdir('vbe')
endif
if build_vgahw
subdir('vgahw')
endif

View File

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

View File

@ -226,6 +226,7 @@ build_dpms = true
build_mitshm = true
build_res = true
build_screensaver = true
build_vbe = true
build_vgahw = true
build_xace = true
build_xsecurity = true