Skip to content
Snippets Groups Projects
Commit d36596b8 authored by Carl Poelking's avatar Carl Poelking
Browse files

Boost required version.

parent b1802758
No related branches found
No related tags found
No related merge requests found
......@@ -23,11 +23,13 @@ find_package(PythonLibs)
include_directories(${PYTHON_INCLUDE_DIRS})
if(DEFINED ENV{BOOST_ROOT})
message("-- BOOST_ROOT is set: $ENV{BOOST_ROOT}")
set(BOOST_ROOT "$ENV{BOOST_ROOT}")
message("-- BOOST_ROOT is set: ${BOOST_ROOT}")
else(DEFINED ENV{BOOST_ROOT})
message("-- Note: BOOST_ROOT not set.")
endif(DEFINED ENV{BOOST_ROOT})
find_package(Boost COMPONENTS python mpi filesystem serialization)
message("-- BOOST_ROOT is set: ${BOOST_ROOT}")
find_package(Boost 1.60.0 COMPONENTS python mpi filesystem serialization)
include_directories(${Boost_INCLUDE_DIRS})
find_package(MPI REQUIRED)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment