LarsFlaeten / ork

Ork - An OpenGL rendering kernel from Inria
Other
35 stars 12 forks source link

Build on macos hight sierra 10.13.4 #3

Open J6rry opened 6 years ago

J6rry commented 6 years ago

According to , I installed the dependiences with brew install. Then mkdir build -> cd build -> cmake .. No errors, I compile with make It stopped with the error: Object.h:53:10: fatal error: 'tr1/memory' file not found

Any suggestion?

LarsFlaeten commented 6 years ago

Hi, this has not been tested on Mac i believe. Try to add the following lines in Object.h after line 51:

#elif __APPLE__
#include <memory>
#define TR1 std