Hi,
Here is an example:
project( MyProject )
set( Boost_ADDITIONAL_VERSIONS "1.38.0" "1.39.0" )
set( Boost_USE_STATIC_LIBS OFF )
set( Boost_USE_MULTITHREAD ON )
find_package( Boost 1.36.0 REQUIRED )
if( Boost_FOUND )
include_directories( ${Boost_INCLUDE_DIR} )
link_directories( ${Boost_LIBRARY_DIR} )
else()
message( FATAL_ERROR "Boost not found ! Please set Boost directories !" )
endif()
add_executable( projectbinary myproject.cpp )
target_link_libraries( projectbinary ${Boost_LIBRARIES} )