diff options
author | Brad King <brad.king@kitware.com> | 2010-08-17 19:09:45 (GMT) |
---|---|---|
committer | CMake Topic Stage <kwrobot@kitware.com> | 2010-08-17 19:09:45 (GMT) |
commit | 4d8f0c2974d7a132b2a690fcbd92b5b2814edfd1 (patch) | |
tree | 5a81ae829ab5507fb8bfba08de9f0dcaef6020c9 /Modules | |
parent | 32ebe21ad8eb22130869c211361edc0781f342a0 (diff) | |
parent | 8de0d1a8cae50df3c5a5c12177d2d8f5999cd9f0 (diff) | |
download | CMake-4d8f0c2974d7a132b2a690fcbd92b5b2814edfd1.zip CMake-4d8f0c2974d7a132b2a690fcbd92b5b2814edfd1.tar.gz CMake-4d8f0c2974d7a132b2a690fcbd92b5b2814edfd1.tar.bz2 |
Merge topic 'FindBoost_cygwin_fix'
8de0d1a Fixes problem finding libraries under Boost (#9510)
Diffstat (limited to 'Modules')
-rw-r--r-- | Modules/FindBoost.cmake | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Modules/FindBoost.cmake b/Modules/FindBoost.cmake index 86fc272..1a1b168 100644 --- a/Modules/FindBoost.cmake +++ b/Modules/FindBoost.cmake @@ -556,7 +556,7 @@ ELSE (_boost_IN_CACHE) # Setting some more suffixes for the library SET (Boost_LIB_PREFIX "") - if ( WIN32 AND Boost_USE_STATIC_LIBS ) + if ( WIN32 AND Boost_USE_STATIC_LIBS AND NOT CYGWIN) SET (Boost_LIB_PREFIX "lib") endif() |