Skip to content
Owen Kaluza edited this page Dec 19, 2019 · 1 revision

Installation guide for CAVE2

git clone [email protected]:mivp/omegalib.git

or

git clone https://github.com/mivp/omegalib.git
cd omegalib
mkdir build
cd build
cmake .. -DCMAKE_INSTALL_PREFIX:PATH=`pwd`/../install -DMODULES="common-modules; displaySystem_Equalizer"
make -j5

Build will error, need to patch following files:

omegalib/build/3rdparty/equalizer/build/include/vmmlib/quaternion.hpp

(delete the return statement where error flagged)

sed -i 's/KC_/eq::KC_/g' ../modules/displaySystem_Equalizer/ConfigImpl.cpp
sed -i 's/::tr1::/::/g' ../modules/cyclops/src/ShaderManager.cpp

Run build again and should complete...

make -j5
Clone this wiki locally