From b47f5b16661ceb4ac51c0e1d2061d9ba2ebb5ed8 Mon Sep 17 00:00:00 2001 From: wpbonelli Date: Fri, 29 Nov 2024 17:10:39 -0500 Subject: [PATCH] chore(meson): clarify build configuration messages fc_id -> compiler ID, follow meson format where message is 'attribute: value' --- meson.build | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/meson.build b/meson.build index e94d07e70f8..c80643f5cb5 100644 --- a/meson.build +++ b/meson.build @@ -20,12 +20,12 @@ if get_option('optimization') == '2' else profile = 'develop' endif -message('The used profile is:', profile) +message('Profile:', profile) # parse compiler options fc = meson.get_compiler('fortran') fc_id = fc.get_id() -message('The fc_id is:', fc_id) +message('Compiler ID:', fc_id) compile_args = [] link_args = []