Skip to content

Commit

Permalink
build: group add_project_arguments() calls together
Browse files Browse the repository at this point in the history
  • Loading branch information
emersion committed Jul 11, 2021
1 parent 1c5de99 commit 508f298
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions meson.build
Original file line number Diff line number Diff line change
Expand Up @@ -11,8 +11,10 @@ project(
],
)

add_project_arguments('-Wno-unused-parameter', language: 'c')
add_project_arguments('-Wno-missing-braces', language: 'c')
add_project_arguments([
'-Wno-unused-parameter',
'-Wno-missing-braces',
], language: 'c')

datadir = get_option('datadir')

Expand Down

0 comments on commit 508f298

Please sign in to comment.