meson.build 386 B

123456789101112131415161718
  1. project('scrcpy', 'c',
  2. version: '2.7',
  3. meson_version: '>= 0.48',
  4. default_options: [
  5. 'c_std=c11',
  6. 'warning_level=2',
  7. 'b_ndebug=if-release',
  8. ])
  9. add_project_arguments('-Wmissing-prototypes', language: 'c')
  10. if get_option('compile_app')
  11. subdir('app')
  12. endif
  13. if get_option('compile_server')
  14. subdir('server')
  15. endif