Skip to content

Commit

Permalink
chore(meson): clarify build configuration messages
Browse files Browse the repository at this point in the history
fc_id -> compiler ID, follow meson format where message is 'attribute: value'
  • Loading branch information
wpbonelli committed Nov 29, 2024
1 parent ae44089 commit b47f5b1
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions meson.build
Original file line number Diff line number Diff line change
Expand Up @@ -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 = []

Expand Down

0 comments on commit b47f5b1

Please sign in to comment.