From 0e9f8c54bceb4b024d70a535b1fbd16b5a39a35e Mon Sep 17 00:00:00 2001 From: Michael Brockus <55331536+michaelbadcrumble@users.noreply.github.com> Date: Fri, 20 Sep 2019 16:25:04 -0700 Subject: [PATCH] Created sub meson.build in source directory. --- src/meson.build | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 src/meson.build diff --git a/src/meson.build b/src/meson.build new file mode 100644 index 0000000..e375e81 --- /dev/null +++ b/src/meson.build @@ -0,0 +1,17 @@ +################################################################################### +# # +# NAME: meson.build # +# # +# AUTHOR: Mike Karlesky, Mark VanderVoord, Greg Williams. # +# WRITTEN BY: Michael Brockus. # +# # +# License: MIT # +# # +################################################################################### + +cmock_dir = include_directories('.') + +cmock_lib = static_library(meson.project_name(), + sources: ['cmock.c'], + dependencies: [unity_dep], + include_directories: cmock_dir)