-
Notifications
You must be signed in to change notification settings - Fork 36
Build from Source: Linux
philthiel edited this page May 5, 2017
·
22 revisions
Build instructions for BALL from source code including the ball_contrib package.
- Git
- CMake >= 3.1.x
- Python 2.7
git clone https://github.com/BALL-Project/ball_contrib.git
cd ball_contrib
mkdir build
cd build
cmake ..
make
// get a coffee and be patient, this can take hours ...
git clone https://github.com/BALL-Project/ball.git
cd ball
mkdir build
cd build
cmake .. -DBALL_CONTRIB_PATH=<path_to_ball_contrib>/build/install
make
// Optional: build unit tests
make build_tests