thesamet / rpcz

RPC implementation for Protocol Buffers over ZeroMQ
http://code.google.com/p/rpcz/
Apache License 2.0
113 stars 40 forks source link

Use proper cmake variables to link with Boost dependencies #14

Closed xdmiodz closed 9 years ago

xdmiodz commented 9 years ago

To name a boost library one should use Boost_<C>_LIBARARY, not Boost_<C>_LIBRARIES, see http://www.cmake.org/cmake/help/v3.0/module/FindBoost.html

Alternatively, Boost_LIBRARIES can be used to name all boost components previously listed in find_packages()

xdmiodz commented 9 years ago

fix for #13

xdmiodz commented 9 years ago

CI fails with the following

CMake 2.8.10 or higher is required.  You are running version 2.8.7

I'm not sure that my change causes it

thesamet commented 9 years ago

Thanks for looking into this!