Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Code Block
languageshell
titleRemove outdated Rialto headers
rm -rf tests/third-party/include/*

Native Build

Before building Rialto-Gstreamer native build, you have to do the native build of Rialto component and install the build output:

Code Block
languageshell
titleBuild and install Rialto Native
BASE_DIR=$(pwd)
NATIVE_DIR=$BASE_DIR/native
cd rialto
cmake . -B build  -DCMAKE_INSTALL_PREFIX=$NATIVE_DIR -DNATIVE_BUILD=ON -DRIALTO_BUILD_TYPE="Debug"
make -C build install


When you do that, execute:

Code Block
languageshell
titleRialto Gstreamer native build
cd rialto-gstreamer
cmake . -B build -DCMAKE_INCLUDE_PATH="${NATIVE_DIR}/include"  -DCMAKE_LIBRARY_PATH="${NATIVE_DIR}/lib" -DNATIVE_BUILD=ON -DRIALTO_BUILD_TYPE="Debug"
make -C build

Rialto-Ocdm

tbd