samlittlewood / carve

Automatically exported from code.google.com/p/carve
Other
0 stars 0 forks source link

cmake fails to find Boost #29

Open GoogleCodeExporter opened 8 years ago

GoogleCodeExporter commented 8 years ago
In cmake-2.8.7 the find module is called FindBoost.cmake. Changing BOOST to 
Boost on the appropriate line in CMakeLists.txt fixed things.

Original issue reported on code.google.com by honestgu...@gmail.com on 13 Feb 2012 at 7:43

GoogleCodeExporter commented 8 years ago
This occurs with carve 1.4.0, on Fedora 15, with boost 1.47. For 
less-experienced people like me who may stumble across this, the fix is the 
"find_package" line in CMakeLists.txt, which should read:

find_package(Boost 1.40)

Original comment by mark.j.s...@gmail.com on 30 Oct 2012 at 6:47