Skip to content

Linux Developer Setup

Pablo Hoch edited this page Apr 28, 2021 · 10 revisions

The steps to build the MOTIS distribution you can also download can found be here.


Requirements:

Note: Unix Makefiles are not working. Please use Ninja to build.

Build MOTIS using the command line:

git clone [email protected]:motis-project/motis.git
cd motis
mkdir build && cd build
cmake -DCMAKE_BUILD_TYPE=Release -GNinja ..
ninja

Make sure the right compiler is used, e.g. by setting CC and CXX environment variables or using toolchain files if it is not the system default compiler.

Clone this wiki locally