meson: Don't install libvncserver subproject

qemu-extended-key-event
Andri Yngvason 2020-12-06 15:32:08 +00:00
parent 31fcdc9d78
commit 339cd4b0ad
1 changed files with 4 additions and 1 deletions

View File

@ -35,7 +35,10 @@ wayland_client = dependency('wayland-client')
wayland_cursor = dependency('wayland-cursor')
libvncserver_opt = cmake.subproject_options()
libvncserver_opt.add_cmake_defines({'BUILD_SHARED_LIBS': false})
libvncserver_opt.add_cmake_defines({
'BUILD_SHARED_LIBS': false,
'LIBVNCSERVER_INSTALL': false,
})
libvncserver_project = cmake.subproject('libvncserver', options: libvncserver_opt)
if libvncserver_project.found()