summaryrefslogtreecommitdiffstats
path: root/Modules/FindBoost.cmake
diff options
context:
space:
mode:
authorPhilip Lowman <philip@yhbt.com>2010-09-18 15:21:23 (GMT)
committerPhilip Lowman <philip@yhbt.com>2010-09-18 15:21:23 (GMT)
commit95ff12091dd1bfed6207021c1a64803c9fcc5e44 (patch)
tree2b1c88e49e847b547df090bfe0054d7cc398670c /Modules/FindBoost.cmake
parent5cce138c91d786197c90b2a108240a6573d72392 (diff)
downloadCMake-95ff12091dd1bfed6207021c1a64803c9fcc5e44.zip
CMake-95ff12091dd1bfed6207021c1a64803c9fcc5e44.tar.gz
CMake-95ff12091dd1bfed6207021c1a64803c9fcc5e44.tar.bz2
FindBoost.cmake: Fixes 10436
Add an additional library filename permutation which fixes library detection for some custom builds of Boost.
Diffstat (limited to 'Modules/FindBoost.cmake')
-rw-r--r--Modules/FindBoost.cmake2
1 files changed, 2 insertions, 0 deletions
diff --git a/Modules/FindBoost.cmake b/Modules/FindBoost.cmake
index 4cf99af..ff3e17b 100644
--- a/Modules/FindBoost.cmake
+++ b/Modules/FindBoost.cmake
@@ -868,6 +868,7 @@ ELSE (_boost_IN_CACHE)
#
set(_boost_RELEASE_NAMES
${Boost_LIB_PREFIX}boost_${COMPONENT}${_boost_COMPILER}${_boost_MULTITHREADED}${_boost_RELEASE_ABI_TAG}-${Boost_LIB_VERSION}
+ ${Boost_LIB_PREFIX}boost_${COMPONENT}${_boost_COMPILER}${_boost_MULTITHREADED}${_boost_RELEASE_ABI_TAG}
${Boost_LIB_PREFIX}boost_${COMPONENT}${_boost_MULTITHREADED}${_boost_RELEASE_ABI_TAG}-${Boost_LIB_VERSION}
${Boost_LIB_PREFIX}boost_${COMPONENT}${_boost_MULTITHREADED}${_boost_RELEASE_ABI_TAG}
${Boost_LIB_PREFIX}boost_${COMPONENT} )
@@ -897,6 +898,7 @@ ELSE (_boost_IN_CACHE)
#
set(_boost_DEBUG_NAMES
${Boost_LIB_PREFIX}boost_${COMPONENT}${_boost_COMPILER}${_boost_MULTITHREADED}${_boost_DEBUG_ABI_TAG}-${Boost_LIB_VERSION}
+ ${Boost_LIB_PREFIX}boost_${COMPONENT}${_boost_COMPILER}${_boost_MULTITHREADED}${_boost_DEBUG_ABI_TAG}
${Boost_LIB_PREFIX}boost_${COMPONENT}${_boost_MULTITHREADED}${_boost_DEBUG_ABI_TAG}-${Boost_LIB_VERSION}
${Boost_LIB_PREFIX}boost_${COMPONENT}${_boost_MULTITHREADED}
${Boost_LIB_PREFIX}boost_${COMPONENT} )