meson.build 1.1 KB

12345678910111213141516171819202122232425262728
  1. # Helper sources for all programs
  2. programs_helper_sources = files('programs_helper.c')
  3. # Programs and their sources
  4. programs = {
  5. 'chargen_server_upcall': files('chargen_server_upcall.c'),
  6. 'client': files('client.c'),
  7. 'st_client': files('st_client.c'),
  8. 'client_upcall': files('client_upcall.c'),
  9. 'daytime_server': files('daytime_server.c'),
  10. 'daytime_server_upcall': files('daytime_server_upcall.c'),
  11. 'discard_server': files('discard_server.c'),
  12. 'discard_server_upcall': files('discard_server_upcall.c'),
  13. 'echo_server': files('echo_server.c'),
  14. 'echo_server_upcall': files('echo_server_upcall.c'),
  15. 'ekr_client': files('ekr_client.c'),
  16. 'ekr_loop': files('ekr_loop.c'),
  17. 'ekr_loop_upcall': files('ekr_loop_upcall.c'),
  18. 'ekr_peer': files('ekr_peer.c'),
  19. 'ekr_server': files('ekr_server.c'),
  20. 'http_client': files('http_client.c'),
  21. 'http_client_upcall': files('http_client_upcall.c'),
  22. 'rtcweb': files('rtcweb.c'),
  23. 'test_libmgmt': files('test_libmgmt.c'),
  24. 'test_timer': files('test_timer.c'),
  25. 'tsctp': files('tsctp.c'),
  26. }