mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer-rs.git
synced 2025-09-02 01:43:49 +00:00
ci: fix vvdec lib install prefix
Set CMAKE_INSTALL_LIBDIR directly so that the x86_64-linux-gnu suffix is correctly set. Part-of: <https://gitlab.freedesktop.org/gstreamer/gstreamer-rs/-/merge_requests/1657>
This commit is contained in:
parent
cf15ac0415
commit
1ab5e0b963
2 changed files with 2 additions and 1 deletions
|
@ -1,5 +1,5 @@
|
||||||
variables:
|
variables:
|
||||||
GST_RS_IMG_TAG: "2025-02-23.0"
|
GST_RS_IMG_TAG: "2025-02-28.0"
|
||||||
GST_RS_IMG_WINDOWS_TAG: "2025-02-23.0"
|
GST_RS_IMG_WINDOWS_TAG: "2025-02-23.0"
|
||||||
GST_RS_STABLE: "1.85.0"
|
GST_RS_STABLE: "1.85.0"
|
||||||
GST_RS_MSRV: "1.80.1"
|
GST_RS_MSRV: "1.80.1"
|
||||||
|
|
|
@ -7,6 +7,7 @@ cd vvdec
|
||||||
git checkout $RELEASE
|
git checkout $RELEASE
|
||||||
cmake -S . -B build -GNinja \
|
cmake -S . -B build -GNinja \
|
||||||
-DCMAKE_INSTALL_PREFIX=/usr/local \
|
-DCMAKE_INSTALL_PREFIX=/usr/local \
|
||||||
|
-DCMAKE_INSTALL_LIBDIR=/usr/local/lib/$(dpkg-architecture -qDEB_HOST_MULTIARCH) \
|
||||||
-DBUILD_SHARED_LIBS=ON \
|
-DBUILD_SHARED_LIBS=ON \
|
||||||
-DVVDEC_TOPLEVEL_OUTPUT_DIRS=OFF
|
-DVVDEC_TOPLEVEL_OUTPUT_DIRS=OFF
|
||||||
ninja -C build
|
ninja -C build
|
||||||
|
|
Loading…
Reference in a new issue