diff options
author | Douglas Gregor <doug.gregor@gmail.com> | 2008-07-14 17:52:53 (GMT) |
---|---|---|
committer | Douglas Gregor <doug.gregor@gmail.com> | 2008-07-14 17:52:53 (GMT) |
commit | 89a39b48c3e61840761641fbd942d190ef8822de (patch) | |
tree | 48f6cd0aecc00975f79734fe2d00b0f2653ed28c /Modules/FindBoost.cmake | |
parent | 0d99216dfb39e31d36b5ab35e56c4be2e0db7ae3 (diff) | |
download | CMake-89a39b48c3e61840761641fbd942d190ef8822de.zip CMake-89a39b48c3e61840761641fbd942d190ef8822de.tar.gz CMake-89a39b48c3e61840761641fbd942d190ef8822de.tar.bz2 |
ENH: FindBoost can now find the upcoming Boost 1.46
Diffstat (limited to 'Modules/FindBoost.cmake')
-rw-r--r-- | Modules/FindBoost.cmake | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/Modules/FindBoost.cmake b/Modules/FindBoost.cmake index 8fc73c6..905e672 100644 --- a/Modules/FindBoost.cmake +++ b/Modules/FindBoost.cmake @@ -12,8 +12,8 @@ # when new Boost versions are released. # # Currently this module searches for the following version numbers: -# 1.33, 1.33.0, 1.33.1, 1.34, 1.34.0, 1.34.1, 1.35, 1.35.0, 1.35.1, 1.36.0, -# 1.36.1 +# 1.33, 1.33.0, 1.33.1, 1.34, 1.34.0, 1.34.1, 1.35, 1.35.0, 1.35.1, 1.36, +# 1.36.0, 1.36.1 # # The components list needs to be the actual names of boost libraries, that is # the part of the actual library files that differ on different libraries. So @@ -36,7 +36,7 @@ # the boost include directory. The default list # of version numbers is: # 1.33, 1.33.0, 1.33.1, 1.34, 1.34.0, 1.34.1, -# 1.35, 1.35.0, 1.35.1, 1.36.0, 1.36.1 +# 1.35, 1.35.0, 1.35.1, 1.36, 1.36.0, 1.36.1 # If you want to look for an older or newer # version set this variable to a list of # strings, where each string contains a number, i.e. @@ -105,8 +105,8 @@ if (Boost_FIND_VERSION_EXACT) endif (Boost_FIND_VERSION_PATCH) else (Boost_FIND_VERSION_EXACT) set( _boost_TEST_VERSIONS ${Boost_ADDITIONAL_VERSIONS} - "1.36.1" "1.36.0" "1.35.1" "1.35.0" "1.35" "1.34.1" "1.34.0" "1.34" "1.33.1" - "1.33.0" "1.33" ) + "1.36.1" "1.36.0" "1.36" "1.35.1" "1.35.0" "1.35" "1.34.1" "1.34.0" + "1.34" "1.33.1" "1.33.0" "1.33" ) endif (Boost_FIND_VERSION_EXACT) # The reason that we failed to find Boost. This will be set to a |