1
0
Fork 0
mirror of https://git.rwth-aachen.de/acs/public/villas/node/ synced 2025-03-09 00:00:00 +01:00

libre: Use CMake in deps.sh

Signed-off-by: Steffen Vogel <post@steffenvogel.de>
This commit is contained in:
Steffen Vogel 2024-03-26 09:40:02 +01:00 committed by pipeacosta
parent 358a42e7e5
commit a963b5d344

View file

@ -293,7 +293,15 @@ fi
if ! pkg-config "libre >= 3.6.0" && \
should_build "libre" "for the rtp node-type"; then
git clone ${GIT_OPTS} --branch v3.6.0 https://github.com/baresip/re.git
pushd re
mkdir -p re/build
pushd re/build
cmake -DUSE_LIBREM=OFF \
-DUSE_BFCP=OFF \
-DUSE_PCP=OFF \
-DUSE_RTMP=OFF \
-DUSE_SIP=OFF \
-DLIBRE_BUILD_STATIC=OFF \
${CMAKE_OPTS} ..
make ${MAKE_OPTS} install
popd
fi