From 1b48802da1951571ef5c6bd87db8ec5e6e0348af Mon Sep 17 00:00:00 2001 From: Paul Romano Date: Mon, 25 Mar 2019 21:58:52 -0500 Subject: [PATCH] Use message(STATUS ...) in two places in CMakeLists.txt --- CMakeLists.txt | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 2bad48f582..4033d2466d 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -26,7 +26,7 @@ option(dagmc "Enable support for DAGMC (CAD) geometry" OFF) set(MPI_ENABLED FALSE) if($ENV{CXX} MATCHES "(mpi[^/]*|CC)$") - message("-- Detected MPI wrapper: $ENV{CXX}") + message(STATUS "Detected MPI wrapper: $ENV{CXX}") set(MPI_ENABLED TRUE) endif() @@ -65,7 +65,7 @@ if(HDF5_IS_PARALLEL) if(NOT MPI_ENABLED) message(FATAL_ERROR "Parallel HDF5 must be used with MPI.") endif() - message("-- Using parallel HDF5") + message(STATUS "Using parallel HDF5") endif() #===============================================================================