Enable missing-prototypes warning

Warn if a global function is defined without a previous prototype
declaration. It is not enabled by default at warning_level=2.
pr4373
Romain Vimont 7 months ago
parent 8cef8bac94
commit 3c2013de10

@ -7,6 +7,8 @@ project('scrcpy', 'c',
'b_ndebug=if-release',
])
add_project_arguments('-Wmissing-prototypes', language: 'c')
if get_option('compile_app')
subdir('app')
endif

Loading…
Cancel
Save