eccodes/project_summary.cmake

20 lines
618 B
CMake
Raw Normal View History

2013-03-25 12:04:10 +00:00
if( SWIG_FOUND )
2013-04-03 10:45:13 +00:00
message( STATUS " SWIG command : [${SWIG_EXECUTABLE}]" )
2013-03-25 12:04:10 +00:00
endif()
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 )
message( STATUS " ${_tpl} ${${_tpl}_VERSION}" )
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()