aboutsummaryrefslogtreecommitdiff
path: root/examples/meson.build
diff options
context:
space:
mode:
authorFuwn <[email protected]>2022-06-19 20:04:56 -0700
committerFuwn <[email protected]>2022-06-19 20:04:56 -0700
commit58688c8090afea95a92a147e26ad0392c1bfef14 (patch)
tree9a6b33f7d5692d3e1daacb1fa90b07098a0e1e47 /examples/meson.build
downloadtael-58688c8090afea95a92a147e26ad0392c1bfef14.tar.xz
tael-58688c8090afea95a92a147e26ad0392c1bfef14.zip
feat: initial commit
Diffstat (limited to 'examples/meson.build')
-rw-r--r--examples/meson.build8
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)