mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-26 11:41:09 +00:00
qt6: search in /usr/lib/qt6/bin/ for qsb
In Debian and possibly other distributions, qsb (qt6-shader-baker) is not in the default path, but in a QT6 specific path. Search there too Applied changes from Nirbheek Part-of: <https://gitlab.freedesktop.org/gstreamer/gstreamer/-/merge_requests/6095>
This commit is contained in:
parent
6608b89977
commit
eb17de27d6
1 changed files with 2 additions and 1 deletions
|
@ -60,7 +60,8 @@ if not qt6qml_dep.found()
|
||||||
subdir_done()
|
subdir_done()
|
||||||
endif
|
endif
|
||||||
|
|
||||||
qsb = find_program('qsb-qt6', 'qsb', required: qt6_option)
|
qt6_bindir = qt6qml_dep.get_variable('bindir', configtool: 'QT_HOST_BINS')
|
||||||
|
qsb = find_program('qsb-qt6', 'qsb', dirs: [qt6_bindir], required: qt6_option)
|
||||||
if not qsb.found()
|
if not qsb.found()
|
||||||
subdir_done()
|
subdir_done()
|
||||||
endif
|
endif
|
||||||
|
|
Loading…
Reference in a new issue