scrcpy/meson.build
Romain Vimont 0efa9305eb Require Meson 0.37
Older versions of Meson are too limited, and it's simple to install a
newer version ("pip3 install meson").
2018-02-14 14:03:56 +01:00

12 lines
214 B
Meson

project('scrcpy', 'c', meson_version: '>= 0.37')
if get_option('build_app')
subdir('app')
endif
if get_option('build_server')
subdir('server')
endif
run_target('run', command: ['scripts/run-scrcpy.sh'])