meson: Build libvbe.so
Reviewed-by: Eric Anholt <eric@anholt.net> Signed-off-by: Adam Jackson <ajax@redhat.com>
This commit is contained in:
parent
2f1a1be46c
commit
59554eaa6c
|
@ -51,6 +51,9 @@ subdir('os-support')
|
||||||
subdir('parser')
|
subdir('parser')
|
||||||
subdir('ramdac')
|
subdir('ramdac')
|
||||||
subdir('shadowfb')
|
subdir('shadowfb')
|
||||||
|
if build_vbe
|
||||||
|
subdir('vbe')
|
||||||
|
endif
|
||||||
if build_vgahw
|
if build_vgahw
|
||||||
subdir('vgahw')
|
subdir('vgahw')
|
||||||
endif
|
endif
|
||||||
|
|
|
@ -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)
|
|
@ -226,6 +226,7 @@ build_dpms = true
|
||||||
build_mitshm = true
|
build_mitshm = true
|
||||||
build_res = true
|
build_res = true
|
||||||
build_screensaver = true
|
build_screensaver = true
|
||||||
|
build_vbe = true
|
||||||
build_vgahw = true
|
build_vgahw = true
|
||||||
build_xace = true
|
build_xace = true
|
||||||
build_xsecurity = true
|
build_xsecurity = true
|
||||||
|
|
Loading…
Reference in New Issue