mirror of
https://github.com/ThrowTheSwitch/Unity.git
synced 2026-01-23 08:25:58 +01:00
Removed 'unity_src' variable because Unity only one source file, changed library method to static only because there was some issues with using Unity as a shared library, cleaned sub meson.build script and fixed comment in sub source root.
17 lines
991 B
Meson
17 lines
991 B
Meson
###################################################################################
|
|
# #
|
|
# NAME: meson.build #
|
|
# #
|
|
# AUTHOR: Mike Karlesky, Mark VanderVoord, Greg Williams. #
|
|
# WRITTEN BY: Michael Brockus. #
|
|
# #
|
|
# License: MIT #
|
|
# #
|
|
###################################################################################
|
|
|
|
unity_dir = include_directories('.')
|
|
|
|
unity_lib = static_library(meson.project_name(),
|
|
sources: ['unity.c'],
|
|
include_directories: unity_dir)
|