From f53878b0d5a5ff5689ecb8dffc428f67280708fe Mon Sep 17 00:00:00 2001 From: Brad King Date: Fri, 1 Nov 2013 11:05:14 -0400 Subject: [PATCH] FindBoost: Clarify example static libs option (#13663) State explicitly in the example that it will only find static libraries. --- Modules/FindBoost.cmake | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Modules/FindBoost.cmake b/Modules/FindBoost.cmake index 88adba185..51a3d7780 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 ...)