From 383c9e362121e3fa62d4a8922ca9f0af0d5fa291 Mon Sep 17 00:00:00 2001 From: Mark Piper Date: Wed, 18 Dec 2024 15:44:15 -0700 Subject: [PATCH] Use status messages --- CMakeLists.txt | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 394e5da..3978206 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -15,9 +15,9 @@ set(bmi_name bmi${model_name}) find_package(PkgConfig REQUIRED) pkg_check_modules(BMIF REQUIRED IMPORTED_TARGET bmif) string(REPLACE "." "_" bmif_module_version ${BMIF_VERSION}) -message("-- bmif module version - ${bmif_module_version}") -message("-- bmif library path - ${BMIF_LINK_LIBRARIES}") -message("-- bmif include dir - ${BMIF_INCLUDE_DIRS}") +message(STATUS " bmif module version - ${bmif_module_version}") +message(STATUS " bmif library path - ${BMIF_LINK_LIBRARIES}") +message(STATUS " bmif include dir - ${BMIF_INCLUDE_DIRS}") include_directories(${BMIF_INCLUDE_DIRS}) set(CMAKE_Fortran_MODULE_DIRECTORY ${CMAKE_BINARY_DIR}/mod)