|
2 | 2 | thread_dep = dependency('threads') |
3 | 3 | pcap_dep = dependency('pcap', version : '>=1.0') |
4 | 4 |
|
5 | | -executable('echo', 'echo.cpp', dependencies: thread_dep, link_with: enso_lib, |
| 5 | +executable('echo', 'echo.cpp', dependencies: [thread_dep], link_with: enso_lib, |
6 | 6 | include_directories: inc) |
7 | | -executable('echo_event', 'echo_event.cpp', dependencies: thread_dep, |
| 7 | +executable('echo_event', 'echo_event.cpp', dependencies: [thread_dep], |
8 | 8 | link_with: enso_lib, include_directories: inc) |
9 | | -executable('echo_prefetch', 'echo_prefetch.cpp', dependencies: thread_dep, |
| 9 | +executable('echo_prefetch', 'echo_prefetch.cpp', dependencies: [thread_dep], |
10 | 10 | link_with: enso_lib, include_directories: inc) |
11 | | -executable('echo_copy', 'echo_copy.cpp', dependencies: thread_dep, |
| 11 | +executable('echo_copy', 'echo_copy.cpp', dependencies: [thread_dep], |
12 | 12 | link_with: enso_lib, include_directories: inc) |
13 | 13 | executable('ensogen', 'ensogen.cpp', dependencies: [thread_dep, pcap_dep], |
14 | 14 | link_with: enso_lib, include_directories: inc) |
15 | 15 | executable('capture', 'capture.cpp', dependencies: [thread_dep, pcap_dep], |
16 | 16 | link_with: enso_lib, include_directories: inc) |
17 | | -executable('l2_forward', 'l2_forward.cpp', dependencies: thread_dep, |
| 17 | +executable('l2_forward', 'l2_forward.cpp', dependencies: [thread_dep], |
18 | 18 | link_with: enso_lib, include_directories: inc) |
0 commit comments