Skip to content
Snippets Groups Projects
Commit 977abe60 authored by Mickael Savinaud's avatar Mickael Savinaud
Browse files

ENH: during the configuration step change Cmake message level from WARNING to...

ENH: during the configuration step change Cmake message level from WARNING to STATUS when we deactivated some tests
parent 2c82adab
No related branches found
No related tags found
No related merge requests found
......@@ -244,7 +244,7 @@ IF(OTB_USE_EXTERNAL_GDAL)
CHECK_HDF4OPEN_SYMBOL
)
IF(NOT CHECK_HDF4OPEN_SYMBOL)
MESSAGE(WARNING "CHECK_HDF4OPEN_SYMBOL test failed : your platform exhibits a problem to read HDF4 files. So the tests with HDF4 will be deactivated" )
MESSAGE(STATUS "CHECK_HDF4OPEN_SYMBOL test failed : your platform exhibits a problem to read HDF4 files. So the tests with HDF4 will be deactivated" )
ENDIF(NOT CHECK_HDF4OPEN_SYMBOL)
ENDIF(CHECK_GDAL_BUILDED_WITH_HDF)
......
......@@ -20,7 +20,7 @@ IF(OTB_USE_EXTERNAL_BOOST)
MESSAGE(STATUS "Boost_UNIT_TEST_FRAMEWORK_LIBRARY: ${Boost_UNIT_TEST_FRAMEWORK_LIBRARY}")
# MESSAGE(STATUS "Boost_DATE_TIME_LIBRARY: ${Boost_DATE_TIME_LIBRARY}")
ELSE(Boost_FOUND)
MESSAGE(WARNING
MESSAGE(STATUS
"Cannot build OTB/OGR UT without Boost. Please set Boost_DIR.")
ENDIF(Boost_FOUND)
......@@ -39,7 +39,7 @@ IF(OTB_USE_EXTERNAL_BOOST)
ENDIF(Boost_UNIT_TEST_FRAMEWORK_FOUND)
ELSE(OTB_USE_EXTERNAL_BOOST)
MESSAGE(WARNING
MESSAGE(STATUS
"Cannot build OTB/OGR UT without Boost. Please install/enable EXTERNAL BOOST.")
ENDIF(OTB_USE_EXTERNAL_BOOST)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment