Skip to content
Snippets Groups Projects
Commit dde58439 authored by Atkins, Charles Vernon's avatar Atkins, Charles Vernon
Browse files

Add config summary

parent 63b45836
No related branches found
No related tags found
1 merge request!9Fix dependencies
...@@ -97,3 +97,24 @@ if(BUILD_TESTING) ...@@ -97,3 +97,24 @@ if(BUILD_TESTING)
enable_testing() enable_testing()
add_subdirectory(testing) add_subdirectory(testing)
endif() endif()
#------------------------------------------------------------------------------#
# Configuration summary
#------------------------------------------------------------------------------#
message("")
message("ADIOS2 build configuration:")
message(" C++ Compiler: ${CMAKE_CXX_COMPILER_ID} ${CMAKE_CXX_COMPILER_VERSION} ${CMAKE_CXX_COMPILER_WRAPPER}")
message(" ${CMAKE_CXX_COMPILER}")
message("")
message(" Installation prefix: ${CMAKE_INSTALL_PREFIX}")
message(" Features:")
if(BUILD_SHARED_LIBS)
message(" Type: shared")
else()
message(" Type: static")
endif()
message(" MPI: ${ADIOS_USE_MPI}")
message(" BZip2: ${ADIOS_USE_BZip2}")
message(" ADIOS1: ${ADIOS_USE_ADIOS1}")
message(" DataMan: ${ADIOS_USE_DataMan}")
message("")
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