eccodes/project_summary.cmake

20 lines
627 B
CMake
Raw Normal View History

2018-11-26 15:20:41 +00:00
#if( SWIG_FOUND )
# message( STATUS " SWIG command : [${SWIG_EXECUTABLE}]" )
#endif()
2013-03-25 12:04:10 +00:00
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()