Skip to content

Compiling release version of RoR (Linux) without conan

Slobodan edited this page Nov 26, 2018 · 9 revisions

First we need to get dependencies compiled

git clone https://github.com/RigsOfRods/ror-dependencies.git

cd ror-dependencies

git checkout upgrade-to-ogre-1.11

cmake -DCMAKE_BUILD_TYPE=RelWithDebInfo ./

or

cmake -DCMAKE_BUILD_TYPE=Release ./

make -j8

after that we need to clone ror it self

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

cd rigs-of-rods

cmake -DCMAKE_PREFIX_PATH=~/ror-dependencies/Dependencies_Linux/ -DCMAKE_BUILD_TYPE=Release ./

make -j8

make zip_and_copy_resources

and thats it, just first run RoRConfig

Clone this wiki locally