Michael Jackson wrote:

Set INSTALL_VERSIONED=OFF
set BOOST_INCLUDE_INSTALL_DIR=include/boost-1_41
set BOOST_LIB_INSTALL_DIR=lib

and then go. I also set an environment variable BOOST_ROOT to the CMAKE_INSTALL_PREFIX.

In my CMake file I have the following;

# ---------- Find Boost Headers/Libraries -----------------------
SET (Boost_FIND_REQUIRED TRUE)
SET (Boost_FIND_QUIETLY TRUE)
set (Boost_USE_MULTITHREADED TRUE)
set (Boost_USE_STATIC_LIBS TRUE)
SET (Boost_ADDITIONAL_VERSIONS "1.41" "1.41.0")

if ( NOT MXA_BOOST_HEADERS_ONLY)
set (MXA_BOOST_COMPONENTS program_options unit_test_framework test_exec_monitor)
endif()

FIND_PACKAGE(Boost COMPONENTS  ${MXA_BOOST_COMPONENTS} )
INCLUDE_DIRECTORIES(${Boost_INCLUDE_DIRS})
LINK_DIRECTORIES(${Boost_LIBRARY_DIRS})

This successfully works with the FindBoost.cmake that is included with CMake 2.6.4

OK, no worries, thanks for the working example, I've added it to the docs.

-t


_______________________________________________
Boost-cmake mailing list
Boost-cmake@lists.boost.org
http://lists.boost.org/mailman/listinfo.cgi/boost-cmake

Reply via email to