summaryrefslogtreecommitdiffstats
path: root/Modules
diff options
context:
space:
mode:
authorBrad King <brad.king@kitware.com>2014-03-26 17:24:45 (GMT)
committerCMake Topic Stage <kwrobot@kitware.com>2014-03-26 17:24:45 (GMT)
commit6ae3fbfeda6bb753b1674c166d73d26bda6c9ec9 (patch)
treeaff78ce078df0ea36b1a9042bfe4fa93e3cdfb39 /Modules
parentedb506b8625ac06cd73c0b1b2696ac4bb65d184a (diff)
parentf284b003d7eee7345f3daa2893a21ff605ba09a7 (diff)
downloadCMake-6ae3fbfeda6bb753b1674c166d73d26bda6c9ec9.zip
CMake-6ae3fbfeda6bb753b1674c166d73d26bda6c9ec9.tar.gz
CMake-6ae3fbfeda6bb753b1674c166d73d26bda6c9ec9.tar.bz2
Merge topic 'dev/find-boost-graph_parallel'
f284b003 FindBoost: Search next to MPI libs for graph_parallel (#14832)
Diffstat (limited to 'Modules')
-rw-r--r--Modules/FindBoost.cmake3
1 files changed, 2 insertions, 1 deletions
diff --git a/Modules/FindBoost.cmake b/Modules/FindBoost.cmake
index a57e12c..d4026af 100644
--- a/Modules/FindBoost.cmake
+++ b/Modules/FindBoost.cmake
@@ -954,7 +954,8 @@ foreach(COMPONENT ${Boost_FIND_COMPONENTS})
# Compute component-specific hints.
set(_Boost_FIND_LIBRARY_HINTS_FOR_COMPONENT "")
- if(${COMPONENT} STREQUAL "mpi" OR ${COMPONENT} STREQUAL "mpi_python")
+ if(${COMPONENT} STREQUAL "mpi" OR ${COMPONENT} STREQUAL "mpi_python" OR
+ ${COMPONENT} STREQUAL "graph_parallel")
foreach(lib ${MPI_CXX_LIBRARIES} ${MPI_C_LIBRARIES})
if(IS_ABSOLUTE "${lib}")
get_filename_component(libdir "${lib}" PATH)