-
Notifications
You must be signed in to change notification settings - Fork 1
Building oRatio
Riccardo De Benedictis edited this page Jan 10, 2018
·
4 revisions
The basic requirements for building oRatio are:
The easiest way to install the building requirements on Ubuntu is as follows
sudo apt-get install build-essential
sudo apt-get install cmake
once the building requirements are installed, move to a desired folder and clone the oRatio repository
git clone https://github.com/riccardodebenedictis/oRatio
finally, build oRatio
mkdir build
cd build
cmake ..
make
The easiest way to compile oRatio on Windows is through Visual Studio. Download and install Visual Studio, download Git and CMake. Start a Visual Studio Command prompt, move to a desired folder and clone the oRatio repository
git clone https://github.com/riccardodebenedictis/oRatio
finally, build oRatio
mkdir build
cd build
cmake -G "NMake Makefiles" ..
nmake