Skip to content

Commit

Permalink
Require Meson 0.48 to get rid of warnings
Browse files Browse the repository at this point in the history
Debian buster (stable) provides Meson 0.49, which is also available in
stretch (oldstable) backports. It's time to abandon Meson 0.37.

Ref: 20b3f10
  • Loading branch information
rom1v committed Apr 13, 2020
1 parent 270d0bf commit eb8f7a1
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
2 changes: 1 addition & 1 deletion meson.build
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
project('scrcpy', 'c',
version: '1.12.1',
meson_version: '>= 0.37',
meson_version: '>= 0.48',
default_options: [
'c_std=c11',
'warning_level=2',
Expand Down
4 changes: 3 additions & 1 deletion server/meson.build
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,9 @@
prebuilt_server = get_option('prebuilt_server')
if prebuilt_server == ''
custom_target('scrcpy-server',
build_always: true, # gradle is responsible for tracking source changes
# gradle is responsible for tracking source changes
build_by_default: true,
build_always_stale: true,
output: 'scrcpy-server',
command: [find_program('./scripts/build-wrapper.sh'), meson.current_source_dir(), '@OUTPUT@', get_option('buildtype')],
console: true,
Expand Down

0 comments on commit eb8f7a1

Please sign in to comment.