diff options
author | Brad King <brad.king@kitware.com> | 2013-11-01 15:05:14 (GMT) |
---|---|---|
committer | Brad King <brad.king@kitware.com> | 2013-11-01 15:24:06 (GMT) |
commit | f53878b0d5a5ff5689ecb8dffc428f67280708fe (patch) | |
tree | d048270af936912279f0e8c6b298402866c81f04 /Modules/FindBoost.cmake | |
parent | a42a66547bc1b5f2f0a616d7ae64d39c3c2b4cc4 (diff) | |
download | CMake-f53878b0d5a5ff5689ecb8dffc428f67280708fe.zip CMake-f53878b0d5a5ff5689ecb8dffc428f67280708fe.tar.gz CMake-f53878b0d5a5ff5689ecb8dffc428f67280708fe.tar.bz2 |
FindBoost: Clarify example static libs option (#13663)
State explicitly in the example that it will only find static libraries.
Diffstat (limited to 'Modules/FindBoost.cmake')
-rw-r--r-- | Modules/FindBoost.cmake | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Modules/FindBoost.cmake b/Modules/FindBoost.cmake index 88adba1..51a3d77 100644 --- a/Modules/FindBoost.cmake +++ b/Modules/FindBoost.cmake @@ -132,9 +132,9 @@ # add_executable(foo foo.cc) # endif() # -# Example to find Boost headers and some libraries:: +# Example to find Boost headers and some *static* libraries:: # -# set(Boost_USE_STATIC_LIBS ON) +# set(Boost_USE_STATIC_LIBS ON) # only find static libs # set(Boost_USE_MULTITHREADED ON) # set(Boost_USE_STATIC_RUNTIME OFF) # find_package(Boost 1.36.0 COMPONENTS date_time filesystem system ...) |