mirror of
https://gitlab.freedesktop.org/monado/monado.git
synced 2024-12-28 18:46:18 +00:00
b25d1651f0
Don't need a patch for OpenXR-SDK any more. Include gtk3 in the image for opencv_highgui. Include ffmpeg.
21 lines
635 B
Bash
Executable file
21 lines
635 B
Bash
Executable file
#!/bin/sh
|
|
|
|
# Install the OpenXR SDK, whatever version, installed system-wide.
|
|
git clone https://github.com/KhronosGroup/OpenXR-SDK
|
|
pushd OpenXR-SDK
|
|
mkdir build
|
|
pushd build
|
|
cmake -DCMAKE_INSTALL_PREFIX=/usr/local -DCMAKE_INSTALL_LIBDIR=lib -DCMAKE_BUILD_TYPE=Release -DBUILD_TESTS=Off -DPRESENTATION_BACKEND=xlib -DDYNAMIC_LOADER=ON -DOpenGL_GL_PREFERENCE=GLVND -GNinja ..
|
|
ninja install
|
|
popd
|
|
popd
|
|
|
|
# Install OpenHMD from git master, as released versions are not sufficient
|
|
# for us to build.
|
|
git clone https://github.com/OpenHMD/OpenHMD
|
|
pushd OpenHMD
|
|
mkdir build
|
|
meson --prefix=/usr/local --libdir=lib build
|
|
ninja -C build install
|
|
popd
|