diff options
-rw-r--r-- | Modules/FindBoost.cmake | 2 | ||||
-rw-r--r-- | Source/CMakeVersion.cmake | 2 |
2 files changed, 3 insertions, 1 deletions
diff --git a/Modules/FindBoost.cmake b/Modules/FindBoost.cmake index c844aed..05b552a 100644 --- a/Modules/FindBoost.cmake +++ b/Modules/FindBoost.cmake @@ -882,8 +882,10 @@ endif() # Begin finding boost libraries # ------------------------------------------------------------------------ +set(_Boost_VARS_LIB "") foreach(c DEBUG RELEASE) set(_Boost_VARS_LIB_${c} BOOST_LIBRARYDIR Boost_LIBRARY_DIR_${c}) + list(APPEND _Boost_VARS_LIB ${_Boost_VARS_LIB_${c}}) _Boost_CHANGE_DETECT(_Boost_CHANGE_LIBDIR_${c} ${_Boost_VARS_DIR} ${_Boost_VARS_LIB_${c}} Boost_INCLUDE_DIR) # Clear Boost_LIBRARY_DIR_${c} if it did not change but other input affecting the # location did. We will find a new one based on the new inputs. diff --git a/Source/CMakeVersion.cmake b/Source/CMakeVersion.cmake index 26c9e44..4db774f 100644 --- a/Source/CMakeVersion.cmake +++ b/Source/CMakeVersion.cmake @@ -1,5 +1,5 @@ # CMake version number components. set(CMake_VERSION_MAJOR 3) set(CMake_VERSION_MINOR 2) -set(CMake_VERSION_PATCH 20150601) +set(CMake_VERSION_PATCH 20150602) #set(CMake_VERSION_RC 1) |