Skip to content

Commit

Permalink
build: drop unnecessary array
Browse files Browse the repository at this point in the history
files() takes a list of files directly.
  • Loading branch information
emersion committed Jan 6, 2024
1 parent 975dfb0 commit dcda1d3
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 @@ -62,7 +62,7 @@ add_project_arguments('-DHAVE_' + sdbus.name().to_upper() + '=1', language: 'c')

subdir('protocols')

xdpw_files = files([
xdpw_files = files(
'src/core/main.c',
'src/core/logger.c',
'src/core/config.c',
Expand All @@ -76,7 +76,7 @@ xdpw_files = files([
'src/screencast/wlr_screencast.c',
'src/screencast/pipewire_screencast.c',
'src/screencast/fps_limit.c',
])
)

executable(
'xdg-desktop-portal-wlr',
Expand Down

0 comments on commit dcda1d3

Please sign in to comment.