mirror of
https://github.com/Genymobile/scrcpy
synced 2024-11-05 06:00:21 +00:00
15 lines
284 B
Meson
15 lines
284 B
Meson
project('scrcpy', 'c',
|
|
version: '1.8',
|
|
meson_version: '>= 0.37',
|
|
default_options: 'c_std=c11')
|
|
|
|
if get_option('build_app')
|
|
subdir('app')
|
|
endif
|
|
|
|
if get_option('build_server')
|
|
subdir('server')
|
|
endif
|
|
|
|
run_target('run', command: ['scripts/run-scrcpy.sh'])
|