scrcpy/meson.build
Romain Vimont 2ed2247e8f Bump version to 3.0.2
The version was not bumped for 3.0.1.
2024-12-04 22:35:25 +01:00

19 lines
388 B
Meson

project('scrcpy', 'c',
version: '3.0.2',
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