mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-12-25 01:30:38 +00:00
meson: Fix building of MSDK plugin on Windows
Variable name was typoed in 604c8d5232
This commit is contained in:
parent
0a350c610d
commit
0b94ed81a4
1 changed files with 1 additions and 1 deletions
|
@ -49,7 +49,7 @@ else
|
|||
if mfx_root != ''
|
||||
mfx_libdir = [mfx_root + '/lib/lin_x64', mfx_root + '/lib/x64', mfx_root + '/lib64', mfx_root + '/lib']
|
||||
mfx_incdir = join_paths([mfx_root, 'include'])
|
||||
mfx_lib = cxx.find_library('mfx', dirs: mfx_libdir, required: mfx_option)
|
||||
mfx_lib = cxx.find_library('mfx', dirs: mfx_libdir, required: msdk_option)
|
||||
mfx_inc = include_directories(mfx_incdir)
|
||||
mfx_dep = declare_dependency(include_directories: mfx_inc, dependencies: mfx_lib)
|
||||
elif msdk_option.enabled()
|
||||
|
|
Loading…
Reference in a new issue