Download cinder

git clone --recursive https://github.com/cinder/Cinder.git

Build Cinder for the first time (might take a while)

cd Cinder
mkdir build
cmake -DCMAKE_BUILD_TYPE=Release ..
make -j 4 # where 4 is how many cores you want to dedicate to it

Build a sample app

cd Cinder/samples/BasicApp/proj/cmake
mkdir build
cmake -DCMAKE_BUILD_TYPE=Release ..