mirror of
https://github.com/Genymobile/scrcpy
synced 2024-11-07 03:20:41 +00:00
7c53a29d72
This script was outdated and redundant with ./run.
19 lines
388 B
Meson
19 lines
388 B
Meson
project('scrcpy', 'c',
|
|
version: '2.3.1',
|
|
meson_version: '>= 0.48',
|
|
default_options: [
|
|
'c_std=c11',
|
|
'warning_level=2',
|
|
'b_ndebug=if-release',
|
|
])
|
|
|
|
add_project_arguments('-Wmissing-prototypes', language: 'c')
|
|
|
|
if get_option('compile_app')
|
|
subdir('app')
|
|
endif
|
|
|
|
if get_option('compile_server')
|
|
subdir('server')
|
|
endif
|