Merge pull request #246 from michaelbadcrumble/meson_support

Add Meson support in CMock.
This commit is contained in:
Mark VanderVoord
2019-09-26 08:50:27 -04:00
committed by GitHub
2 changed files with 88 additions and 0 deletions
+17
View File
@@ -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)