From bd4d35ddd0755d7214fa7a8df53a8b7ce9ccaea6 Mon Sep 17 00:00:00 2001 From: Michael Brockus Date: Tue, 2 Jul 2019 19:58:16 -0700 Subject: [PATCH] Added meson.build in src directory. --- src/meson.build | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) create mode 100644 src/meson.build diff --git a/src/meson.build b/src/meson.build new file mode 100644 index 0000000..5d8c452 --- /dev/null +++ b/src/meson.build @@ -0,0 +1,20 @@ +################################################################################### +# # +# NAME: src/meson.build # +# # +# AUTHOR: Mike Karlesky, Mark VanderVoord, Greg Williams. # +# WRITTEN BY: Michael Brockus. # +# # +# License: MIT # +# # +################################################################################### + + + +unity_src = files('unity.c') + +unity_dir = include_directories('.') + +unity_lib = library(meson.project_name(), + sources: unity_src, + include_directories: unity_dir) \ No newline at end of file