1
0
mirror of https://github.com/ThrowTheSwitch/Unity.git synced 2026-01-24 00:45:58 +01:00

Fixed issues regarding the example Meson project.

This commit is contained in:
Michael Brockus
2019-07-03 21:03:39 -07:00
parent c7185b3a5a
commit c10f87f1e6
9 changed files with 28 additions and 53 deletions

View File

@@ -11,13 +11,21 @@
example_src = files('ProductionCode.c', 'ProductionCode2.c')
example_lib = library(meson.project_name(),
sources: example_src,
a_lib = library(
'production-code-1',
'ProductionCode.c',
include_directories: example_dir)
example_dep = declare_dependency(
version: meson.project_version(),
link_with: example_lib,
b_lib = library(
'production-code-2',
'ProductionCode2.c',
include_directories: example_dir)
a_dep = declare_dependency(
link_with: a_lib,
include_directories: example_dir)
b_dep = declare_dependency(
link_with: b_lib,
include_directories: example_dir)