diff options
| author | Fuwn <[email protected]> | 2022-06-14 20:08:51 -0700 |
|---|---|---|
| committer | Fuwn <[email protected]> | 2022-06-14 20:08:51 -0700 |
| commit | 0105c9d79d02f00182c40c29d33b907982c0556d (patch) | |
| tree | 3a5af6104a84a271bbbf359fdf2257ae14fcb233 /examples/meson.build | |
| download | tatl-0.1.0.tar.xz tatl-0.1.0.zip | |
feat: initial commit0.1.0
Diffstat (limited to 'examples/meson.build')
| -rw-r--r-- | examples/meson.build | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/examples/meson.build b/examples/meson.build new file mode 100644 index 0000000..8928a2c --- /dev/null +++ b/examples/meson.build @@ -0,0 +1,11 @@ +executable('addition', + ['addition.c'], + include_directories : public_header_files, + link_with : [project_target], + c_args : project_build_args) + +executable('macro', + ['macro.c'], + include_directories : public_header_files, + link_with : [project_target], + c_args : project_build_args) |