1
0
mirror of https://github.com/ThrowTheSwitch/Unity.git synced 2026-01-27 02:11:36 +01:00

Merge pull request #429 from squidfarts/master

Meson support for Unity unit testing framework.
This commit is contained in:
Mark VanderVoord
2019-07-05 15:34:23 -04:00
committed by GitHub
17 changed files with 467 additions and 12 deletions

20
src/meson.build Normal file
View File

@@ -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)