...
| Code Block |
|---|
| language | shell |
|---|
| title | Remove 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 |
|---|
| language | shell |
|---|
| title | Build 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 |
|---|
| language | shell |
|---|
| title | Rialto 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