scrcpy/meson.build
Romain Vimont eb8f7a1f28 Require Meson 0.48 to get rid of warnings
Debian buster (stable) provides Meson 0.49, which is also available in
stretch (oldstable) backports. It's time to abandon Meson 0.37.

Ref: 20b3f101a4
2020-04-13 22:47:03 +02:00

17 lines
347 B
Meson

project('scrcpy', 'c',
version: '1.12.1',
meson_version: '>= 0.48',
default_options: [
'c_std=c11',
'warning_level=2',
])
if get_option('compile_app')
subdir('app')
endif
if get_option('compile_server')
subdir('server')
endif
run_target('run', command: ['scripts/run-scrcpy.sh'])