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

install libwebsockets in deps.sh

This commit is contained in:
Steffen Vogel 2020-06-06 22:04:29 +02:00 committed by Steffen Vogel
parent 6ca8213f76
commit ab5c2aede5

View file

@ -84,6 +84,15 @@ if [ -n "${PACKAGE}" ]; then
fi
popd
# Build & Install libwebsockets
git clone https://libwebsockets.org/repo/libwebsockets
mkdir -p libwebsockets/build
pushd libwebsockets/build
git checkout v4.0-stable
cmake -DCMAKE_INSTALL_LIBDIR=/usr/local/lib64 ${CMAKE_OPTS} ..
make -j$(nproc) ${TARGET}
popd
# Build & Install uldaq
git clone https://github.com/stv0g/uldaq
pushd uldaq