mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-01-29 18:48:44 +00:00
msdk: fix intel sdk libdir path
the 2018.3.1 intel sdk release places libraries into /lib64 instead of /lib/lin_x64 or /lib/x64, this commit adds /lib64 to the libdir locations list Fixes #815
This commit is contained in:
parent
f4dc780168
commit
23b0172ee9
1 changed files with 1 additions and 1 deletions
|
@ -45,7 +45,7 @@ have_msdk = false
|
|||
msdk_dep = []
|
||||
|
||||
if msdk_root != ''
|
||||
msdk_libdir = [msdk_root + '/lib/lin_x64', msdk_root + '/lib/x64']
|
||||
msdk_libdir = [msdk_root + '/lib/lin_x64', msdk_root + '/lib/x64', msdk_root + '/lib64']
|
||||
msdk_incdir = include_directories(msdk_root + '/include')
|
||||
msdk_lib = cxx.find_library('mfx', dirs: msdk_libdir, required: msdk_option)
|
||||
if host_machine.system() == 'windows'
|
||||
|
|
Loading…
Reference in a new issue