scrcpy/meson.build
2019-08-04 16:41:04 +02:00

15 lines
289 B
Meson

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