Skip to content

Latest commit

 

History

History
22 lines (17 loc) · 559 Bytes

macos-dev-setup.md

File metadata and controls

22 lines (17 loc) · 559 Bytes

Requirements:

  • macOS 10.15 or newer
  • Command Line Tools for Xcode or Xcode: xcode-select --install or manual download
  • CMake 3.17 (or newer)
  • Ninja
  • Git

(Git, Ninja, and CMake can be installed via HomeBrew)

Caution

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

To build motis:

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