summaryrefslogtreecommitdiff
path: root/tests/meson.build
blob: 1074e40e961a64d797ddd57180fc34f1d3e7b05e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
executable('misc_file', ['misc_file.c'], dependencies: naunet)
executable('condition_variable', ['condition_variable.c'], dependencies: naunet)
executable('timer_thread', ['timer_thread.c'], dependencies: naunet)
if get_option('event-loop').enabled()
  executable('timer_loop', ['timer_loop.c'], dependencies: naunet)
  executable('timer_clear_pending', ['timer_clear_pending.c'], dependencies: naunet)
  executable('loop_sleep', ['loop_sleep.c'], dependencies: naunet)
  if not is_windows
    executable('stdin_lines', ['stdin_lines.c'], dependencies: naunet)
    executable('fs_event', ['fs_event_local.c'], dependencies: naunet)
  endif
endif
executable('cmd_args', ['command_line_args.c'], dependencies: naunet, link_args: is_windows ? ['-mwindows', '-municode'] : [])