diff options
| author | William A. Kennington III <wak@google.com> | 2018-12-04 17:22:05 -0800 |
|---|---|---|
| committer | William A. Kennington III <wak@google.com> | 2018-12-13 15:22:36 -0800 |
| commit | d4b33e95f6b9bf9a2e1ad41f371fa602a49989a5 (patch) | |
| tree | 4645ea7dc7167d984c987ebb6f2849b1ffa81d1a /example/meson.build | |
| parent | 08ebb3993a2b5a82d0a5ead29a649c95632f7c64 (diff) | |
| download | sdeventplus-d4b33e95f6b9bf9a2e1ad41f371fa602a49989a5.tar.gz sdeventplus-d4b33e95f6b9bf9a2e1ad41f371fa602a49989a5.zip | |
meson: Add alternative build system
For now both autotools and meson will be maintained side by side.
Eventually we should remove the autotools build system.
Change-Id: I04382b17d5267ee218e2658fc163da17853f637a
Signed-off-by: William A. Kennington III <wak@google.com>
Diffstat (limited to 'example/meson.build')
| -rw-r--r-- | example/meson.build | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/example/meson.build b/example/meson.build new file mode 100644 index 0000000..1f18444 --- /dev/null +++ b/example/meson.build @@ -0,0 +1,13 @@ +examples = [ + 'delayed_echo', + 'follow', + 'heartbeat', + 'heartbeat_timer', +] + +foreach example : examples + executable(example, example + '.cpp', + include_directories: includes, + implicit_include_directories: false, + link_with: sdeventplus) +endforeach |

