Merge topic 'fix-issue-11035'

d570ee7 Fix 11035 : debug/release library configuration mistake
This commit is contained in:
Brad King 2010-08-17 15:15:30 -04:00 committed by CMake Topic Stage
commit 79383cfd97
1 changed files with 2 additions and 2 deletions

View File

@ -74,8 +74,8 @@ IF(WIN32 AND NOT CYGWIN)
)
if( CMAKE_CONFIGURATION_TYPES OR CMAKE_BUILD_TYPE )
set( OPENSSL_LIBRARIES
optimized ${SSL_EAY_RELEASE} ${LIB_EAY_RELEASE}
debug ${SSL_EAY_DEBUG} ${LIB_EAY_DEBUG}
optimized ${SSL_EAY_RELEASE} debug ${SSL_EAY_DEBUG}
optimized ${LIB_EAY_RELEASE} debug ${LIB_EAY_DEBUG}
)
else()
set( OPENSSL_LIBRARIES ${SSL_EAY_RELEASE} ${LIB_EAY_RELEASE} )