mirror of
https://github.com/ThrowTheSwitch/Unity.git
synced 2026-06-05 21:15:22 +00:00
f2711a87a6
Moved example dir variable into source meson.build script, fixed comment.
18 lines
965 B
Meson
18 lines
965 B
Meson
###################################################################################
|
|
# #
|
|
# NAME: meson.build #
|
|
# #
|
|
# AUTHOR: Mike Karlesky, Mark VanderVoord, Greg Williams. #
|
|
# WRITTEN BY: Michael Brockus. #
|
|
# #
|
|
# License: MIT #
|
|
# #
|
|
###################################################################################
|
|
|
|
project('example-4', 'c')
|
|
|
|
unity_dep = dependency('unity', fallback : ['unity', 'unity_dep'])
|
|
|
|
subdir('src')
|
|
subdir('test')
|