diff options
author | Philip Lowman <philip@yhbt.com> | 2012-06-30 07:40:37 (GMT) |
---|---|---|
committer | Philip Lowman <philip@yhbt.com> | 2012-06-30 07:40:37 (GMT) |
commit | ca90709fd67dc0a83ca6f75d793eab38967745a3 (patch) | |
tree | 8999d15b4a80cffbfc534ce162729e9ceda691e3 /Modules | |
parent | accd0428f4f76feef5122117699b196d04dca84a (diff) | |
download | CMake-ca90709fd67dc0a83ca6f75d793eab38967745a3.zip CMake-ca90709fd67dc0a83ca6f75d793eab38967745a3.tar.gz CMake-ca90709fd67dc0a83ca6f75d793eab38967745a3.tar.bz2 |
FindBoost: Future proof to 1.56
Diffstat (limited to 'Modules')
-rw-r--r-- | Modules/FindBoost.cmake | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/Modules/FindBoost.cmake b/Modules/FindBoost.cmake index 4826da6..ad6b159 100644 --- a/Modules/FindBoost.cmake +++ b/Modules/FindBoost.cmake @@ -66,7 +66,8 @@ # 1.36, 1.36.0, 1.36.1, 1.37, 1.37.0, 1.38, 1.38.0, 1.39, 1.39.0, # 1.40, 1.40.0, 1.41, 1.41.0, 1.42, 1.42.0, 1.43, 1.43.0, 1.44, 1.44.0, # 1.45, 1.45.0, 1.46, 1.46.0, 1.46.1, 1.47, 1.47.0, 1.48, 1.48.0, -# 1.49, 1.49.0, 1.50, 1.50.0 +# 1.49, 1.49.0, 1.50, 1.50.0, 1.51, 1.51.0, 1.52, 1.52.0, +# 1.53, 1.53.0, 1.54, 1.54.0, 1.55, 1.55.0, 1.56, 1.56.0 # # NOTE: If you add a new major 1.x version in Boost_ADDITIONAL_VERSIONS you should # add both 1.x and 1.x.0 as shown above. Official Boost include directories @@ -528,6 +529,8 @@ else(Boost_FIND_VERSION_EXACT) # The user has not requested an exact version. Among known # versions, find those that are acceptable to the user request. set(_Boost_KNOWN_VERSIONS ${Boost_ADDITIONAL_VERSIONS} + "1.56.0" "1.56" "1.55.0" "1.55" "1.54.0" "1.54" + "1.53.0" "1.53" "1.52.0" "1.52" "1.51.0" "1.51" "1.50.0" "1.50" "1.49.0" "1.49" "1.48.0" "1.48" "1.47.0" "1.47" "1.46.1" "1.46.0" "1.46" "1.45.0" "1.45" "1.44.0" "1.44" "1.43.0" "1.43" "1.42.0" "1.42" "1.41.0" "1.41" "1.40.0" "1.40" "1.39.0" "1.39" "1.38.0" "1.38" "1.37.0" "1.37" |