Skip to content

Building: Unix Command Line

Ricardo Martins edited this page Apr 17, 2013 · 1 revision

Building: Unix Command Line

This tutorial assumes you have read the previous tutorial Obtaining the Source Code.

  1. Create a dedicated folder for DUNE's compiled binaries:
mkdir $HOME/dune/build
  1. Change your current working directory to the folder you just created.
cd $HOME/dune/build
  1. Run CMake to generate GNU Makefiles.
cmake ../dune
  1. Call GNU Make to build everything:
make