Skip to content

Commit

Permalink
Update dependency installation
Browse files Browse the repository at this point in the history
  • Loading branch information
Tinker-Twins committed Jul 4, 2023
1 parent 6ed053e commit 99d5f67
Showing 1 changed file with 8 additions and 5 deletions.
13 changes: 8 additions & 5 deletions ADSS Toolkit/autodrive_cpp/build.sh
Original file line number Diff line number Diff line change
Expand Up @@ -11,17 +11,20 @@ sudo apt-get install -y git libuv1-dev libssl-dev libz-dev gcc g++ cmake make
git clone https://github.com/uWebSockets/uWebSockets
cd uWebSockets
git checkout e94b6e1
cd ..

# Build (compile) the project and store output in the dedicated `build` directory.
mkdir -p build
cd build
cmake ..
make
cd ..

# Create symbolic links to websocket library
sudo make install
cd ../..
sudo ln -sf /usr/lib64/libuWS.so /usr/lib/libuWS.so

mkdir -p build
cd build
cmake .. && make
cd ..

# Clean the repository
sudo rm -r uWebSockets
sudo rm -r uWebSockets

0 comments on commit 99d5f67

Please sign in to comment.