Skip to content

Commit

Permalink
Correct the CMake configure-time output messages
Browse files Browse the repository at this point in the history
  • Loading branch information
marcosbento committed Nov 29, 2024
1 parent 1b0207e commit 53ecca7
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions cmake/Dependencies.cmake
Original file line number Diff line number Diff line change
Expand Up @@ -131,11 +131,11 @@ endif()
if ( ENABLE_STATIC_BOOST_LIBS )
set(Boost_USE_STATIC_LIBS ON)
set(BOOST_TEST_DYN_LINK "")
ecbuild_info( "Using STATIC boost libraries : ${BOOST_TEST_DYN_LINK}" )
ecbuild_info( "Using STATIC boost libraries" )
else()
set(Boost_USE_STATIC_LIBS OFF)
set(BOOST_TEST_DYN_LINK "BOOST_TEST_DYN_LINK")
ecbuild_info( "Using SHARED boost libraries : ${BOOST_TEST_DYN_LINK}" )
ecbuild_info( "Using SHARED boost libraries : (i.e. defining ${BOOST_TEST_DYN_LINK})" )
endif()

set(Boost_USE_MULTITHREADED ON)
Expand Down

0 comments on commit 53ecca7

Please sign in to comment.