mirror of
https://github.com/ThrowTheSwitch/Unity.git
synced 2026-01-25 09:21:36 +01:00
20 lines
1013 B
Meson
20 lines
1013 B
Meson
###################################################################################
|
|
# #
|
|
# 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) |