Send me RoR dependencies for building

I tried to build them myself in Termux with ubuntu proot-distro, but I can't
so I will be thankful if you send me them

(from https://github.com/RigsOfRods/rigs-of-rods/wiki/Compile-(Linux))
good luck getting this to work on android (unless termux is available on desktops idk)

Bash:
sudo apt-get update
sudo apt-get install build-essential git cmake ninja-build \
libssl-dev nvidia-cg-dev \
libgl1-mesa-dev libglu1-mesa-dev \
libxaw7-dev libx11-dev libxt-dev libxaw7-dev libxrandr-dev

cd ~/
git clone --recursive https://github.com/RigsOfRods/ror-dependencies.git
cd ror-dependencies
cmake .
make

cd ~/
git clone --recursive https://github.com/RigsOfRods/rigs-of-rods.git
cd rigs-of-rods

mkdir -p ~/rigs-of-rods/build

cd ~/rigs-of-rods/build
cmake -GNinja -B. -S.. -DCMAKE_PREFIX_PATH=~/ror-dependencies/Dependencies_Linux/ -DCMAKE_BUILD_TYPE=RelWithDebInfo

ninja
 
Back
Top