I am trying to compile a CIGI
's MPV for OpenSceneGraph
using cmake
. It's not very recent, it requires boost 1.34.1.
So I downloaded it, cmake
couldn't find the boost for a while. I put set(Boost_DEBUG 1)
in the FindBoost.cmake and, amongst other things, got the following:
Searching for SIGNALS_LIBRARY_RELEASE: boost_signals-vc100-mt-1_34_1;boost_signals-vc100-mt;boost_signals-mt-1_34_1;boost_signals-mt;boost_signals
Searching for SIGNALS_LIBRARY_DEBUG: boost_signals-vc100-mt-gd-1_34_1;boost_signals-vc100-mt-gd;boost_signals-mt-gd-1_34_1;boost_signals-mt-gd;boost_signals-mt;boost_signals
Could not find the following Boost libraries:
boost_signals
Now I am trying to find this library. This instruction suggests I either build them myself or download them from a link, which is now broken. I couldn't built it with bjam (bjam --toolset=msvc stage
) I kept getting error's like:
libs\program_options\src\cmdline.cpp(198) : error C2668: 'boost::bind' : ambiguous call to overloaded function
and
unknown compiler version please run the configure tests and report the results
. Then I downloaded this installer which had only dll of needed library, release I assume and I need debug as well.
So a couple of questions presents itself:
1.Do I keep trying to compile boost, if so any tips?
2.Where do I get the libs I need?
3.I am assuming I need the .lib files not the .dll's, am i right?
I am really confused by now, please point me in the right direction.