Skip to content

Fix subproject dependency version #849

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
18 changes: 12 additions & 6 deletions va/meson.build
Original file line number Diff line number Diff line change
Expand Up @@ -86,7 +86,8 @@ libva = shared_library(
libva_dep = declare_dependency(
link_with : libva,
include_directories : configinc,
dependencies : [ dl_dep ])
dependencies : [ dl_dep ],
version : va_api_version)

if WITH_DRM
libva_drm_sources = [
Expand Down Expand Up @@ -135,7 +136,8 @@ if WITH_DRM
libva_drm_dep = declare_dependency(
link_with : libva_drm,
include_directories : configinc,
dependencies : deps)
dependencies : deps,
version : va_api_version)
endif

if WITH_X11
Expand Down Expand Up @@ -185,7 +187,8 @@ if WITH_X11
libva_x11_dep = declare_dependency(
link_with : libva_x11,
include_directories : configinc,
dependencies : deps)
dependencies : deps,
version : va_api_version)
endif

if WITH_GLX
Expand Down Expand Up @@ -223,7 +226,8 @@ if WITH_GLX
libva_glx_dep = declare_dependency(
link_with : libva_glx,
include_directories : configinc,
dependencies : deps)
dependencies : deps,
version : va_api_version)
endif

if WITH_WAYLAND
Expand Down Expand Up @@ -287,7 +291,8 @@ if WITH_WAYLAND
libva_wayland_dep = declare_dependency(
link_with : libva_wayland,
include_directories : configinc,
dependencies : deps)
dependencies : deps,
version : va_api_version)
endif

fs = import('fs')
Expand Down Expand Up @@ -324,7 +329,8 @@ if WITH_WIN32
libva_win32_dep = declare_dependency(
link_with : libva_win32,
include_directories : configinc,
dependencies : deps)
dependencies : deps,
version : va_api_version)
endif

foreach header : libva_headers_subproject
Expand Down
Loading