Update meson.build

Moved example dir variable into source meson.build script, fixed comment.
This commit is contained in:
Michael Brockus
2019-09-17 11:25:17 -07:00
committed by GitHub
parent 822e244bd4
commit f2711a87a6

View File

@ -1,6 +1,6 @@
################################################################################### ###################################################################################
# # # #
# NAME: examples/example_4/meson.build # # NAME: meson.build #
# # # #
# AUTHOR: Mike Karlesky, Mark VanderVoord, Greg Williams. # # AUTHOR: Mike Karlesky, Mark VanderVoord, Greg Williams. #
# WRITTEN BY: Michael Brockus. # # WRITTEN BY: Michael Brockus. #
@ -9,12 +9,9 @@
# # # #
################################################################################### ###################################################################################
project('example-4', 'c') project('example-4', 'c')
unity_dep = dependency('unity', fallback : ['unity', 'unity_dep']) unity_dep = dependency('unity', fallback : ['unity', 'unity_dep'])
example_dir = include_directories('.', join_paths('.', 'src'))
subdir('src') subdir('src')
subdir('test') subdir('test')