forked from uic-evl/omegalib
-
Notifications
You must be signed in to change notification settings - Fork 0
Home
Owen Kaluza edited this page Dec 19, 2019
·
1 revision
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