eccodes/project_summary.cmake

17 lines
558 B
CMake
Raw Normal View History

2024-01-31 15:57:58 +00:00
# Third-party libraries
2015-02-20 18:24:13 +00:00
foreach( _tpl ${ECCODES_TPLS} )
2013-05-14 16:38:40 +00:00
string( TOUPPER ${_tpl} TPL )
if( ${TPL}_FOUND )
2018-11-26 15:20:41 +00:00
message( STATUS " ${_tpl} ${${TPL}_VERSION_STRING}" )
2013-05-14 16:38:40 +00:00
if( ${TPL}_INCLUDE_DIRS )
message( STATUS " includes : [${${TPL}_INCLUDE_DIRS}]" )
endif()
if( ${TPL}_LIBRARIES )
message( STATUS " libs : [${${TPL}_LIBRARIES}]" )
endif()
if( ${TPL}_DEFINITIONS )
message( STATUS " defs : [${${TPL}_DEFINITIONS}]" )
endif()
endif()
endforeach()