diff options
| author | Fuwn <[email protected]> | 2022-06-19 20:04:56 -0700 |
|---|---|---|
| committer | Fuwn <[email protected]> | 2022-06-19 20:04:56 -0700 |
| commit | 58688c8090afea95a92a147e26ad0392c1bfef14 (patch) | |
| tree | 9a6b33f7d5692d3e1daacb1fa90b07098a0e1e47 /examples/meson.build | |
| download | tael-58688c8090afea95a92a147e26ad0392c1bfef14.tar.xz tael-58688c8090afea95a92a147e26ad0392c1bfef14.zip | |
feat: initial commit
Diffstat (limited to 'examples/meson.build')
| -rw-r--r-- | examples/meson.build | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/examples/meson.build b/examples/meson.build new file mode 100644 index 0000000..de2c6c9 --- /dev/null +++ b/examples/meson.build @@ -0,0 +1,8 @@ +project_test_files += files('addition.cc') + +executable('addition', + ['addition.cc'], + include_directories : public_header_files, + link_with : [project_target], + dependencies: [tatl], + cpp_args : project_build_args) |