Open J6rry opened 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
brew install
mkdir build
cd build
cmake ..
make
Any suggestion?
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
According to, I installed the dependiences with
brew install
. Thenmkdir build
->cd build
->cmake ..
No errors, I compile withmake
It stopped with the error: Object.h:53:10: fatal error: 'tr1/memory' file not foundAny suggestion?