mirror of
https://github.com/ThrowTheSwitch/Unity.git
synced 2026-01-23 08:25:58 +01:00
17 lines
544 B
Meson
17 lines
544 B
Meson
#
|
|
# build script written by : Michael Brockus.
|
|
# github repo author: Mike Karlesky, Mark VanderVoord, Greg Williams.
|
|
#
|
|
# license: MIT
|
|
#
|
|
inc_dir = include_directories('.')
|
|
lib_list = {'a': ['ProductionCode.c' ], 'b': ['ProductionCode2.c']}
|
|
|
|
foreach lib, src : lib_list
|
|
set_variable(lib + '_lib',
|
|
static_library(lib + '_lib', sources: src, include_directories: inc_dir))
|
|
endforeach
|
|
|
|
a_dep = declare_dependency(link_with: a_lib, include_directories: inc_dir)
|
|
b_dep = declare_dependency(link_with: b_lib, include_directories: inc_dir)
|