Re: C++ SDK Build on Mac
Post by Micky » 20 Jan 2015, 11:14
@Nancy, have you built the boost libs, before using cmake to build the EyeTribe C++ SDK?
If you're still unsuccessful in letting cmake detect boost, you could just pre-fetch the libs though MacPort or Homebrew, and let it install on the system.
Take a look at
http://stackoverflow.com/questions/1043 ... t-on-macos,
where guides on how to install the prebuilt boost libs using either port or brew is available, but also on how to build boost from the downloaded source code.
Hello, Thanks for the help, I built boost libraries using the commands
./bootstrap.sh --prefix=/some/dir/you/would/like/to/prefix
./b2
./b2 install
And then pointed to the libraries in cmake. As I seen Boost Libraries are now detected but I've got some new errors.
Here is the output:
CMake Error at /Applications/CMake.app/Contents/share/cmake-3.1/Modules/FindBoost.cmake:685 (file):
file STRINGS file
"/Users/charbel/Desktop/boostinstall/prefix/lib/boost/version.hpp" cannot
be read.
Call Stack (most recent call first):
CMakeLists.txt:31 (FIND_PACKAGE)Boost version: 0.0.0
Found the following Boost libraries:
thread
system
Configuring incomplete, errors occurred!
See also "/Users/charbel/Desktop/bin2/CMakeFiles/CMakeOutput.log".
Any suggestions?