mirror of
https://github.com/ThrowTheSwitch/Unity.git
synced 2026-01-23 00:15:58 +01:00
14 lines
298 B
Meson
14 lines
298 B
Meson
#
|
|
# build script written by : Michael Gene Brockus.
|
|
# github repo author: Mike Karlesky, Mark VanderVoord, Greg Williams.
|
|
#
|
|
# license: MIT
|
|
#
|
|
unity_dir = include_directories('.')
|
|
|
|
unity_lib = static_library(meson.project_name(),
|
|
'unity.c',
|
|
include_directories: unity_dir,
|
|
native: true
|
|
)
|