1
0
mirror of https://github.com/ThrowTheSwitch/Unity.git synced 2026-01-24 17:01:35 +01:00

Merge pull request #445 from michaelbadcrumble/fix_meson_support

Fix Meson build system support.
This commit is contained in:
Mark VanderVoord
2019-09-30 05:58:47 -04:00
committed by GitHub
6 changed files with 62 additions and 100 deletions

View File

@@ -1,6 +1,6 @@
###################################################################################
# #
# NAME: src/meson.build #
# NAME: meson.build #
# #
# AUTHOR: Mike Karlesky, Mark VanderVoord, Greg Williams. #
# WRITTEN BY: Michael Brockus. #
@@ -9,12 +9,8 @@
# #
###################################################################################
unity_src = files('unity.c')
unity_dir = include_directories('.')
unity_lib = library(meson.project_name(),
sources: unity_src,
include_directories: unity_dir)
unity_lib = static_library(meson.project_name(),
sources: ['unity.c'],
include_directories: unity_dir)