mirror of
https://github.com/Genymobile/scrcpy
synced 2024-11-15 06:12:53 +00:00
5f3fb843f5
The previous version bump to 2.2 was incorrect, it was updated by: ./bump_version v2.2 instead of: ./bump_version 2.2 Correctly bump to version 2.3. Refs #4433 <https://github.com/Genymobile/scrcpy/issues/4433#issuecomment-1816830875>
21 lines
441 B
Meson
21 lines
441 B
Meson
project('scrcpy', 'c',
|
|
version: '2.3',
|
|
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
|
|
|
|
run_target('run', command: ['scripts/run-scrcpy.sh'])
|