1
0
mirror of https://github.com/ThrowTheSwitch/Unity.git synced 2026-01-23 08:25:58 +01:00

Added meson.build in src directory.

This commit is contained in:
Michael Brockus
2019-07-02 19:58:16 -07:00
parent 7dbfc4be56
commit bd4d35ddd0

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)