From c64cc7d4f41555b33cd47a9f478f6e92ea3189f2 Mon Sep 17 00:00:00 2001 From: Kyle Krueger Date: Mon, 10 Sep 2018 10:51:14 +0200 Subject: [PATCH] fix new references --- examples/example_3/target_gcc_32.yml | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/examples/example_3/target_gcc_32.yml b/examples/example_3/target_gcc_32.yml index 8e772b0..124e674 100644 --- a/examples/example_3/target_gcc_32.yml +++ b/examples/example_3/target_gcc_32.yml @@ -1,8 +1,9 @@ # Copied from ~Unity/targets/gcc_32.yml unity_root: &unity_root '../..' +unity_source: &unity_source '../../src' compiler: path: gcc - source_path: 'src/' + source_path: &source_path 'src/' unit_tests_path: &unit_tests_path 'test/' build_path: &build_path 'build/' options: @@ -15,8 +16,8 @@ compiler: includes: prefix: '-I' items: - - *source_path - - '../../src/' + - *source_path + - *unity_source - *unit_tests_path defines: prefix: '-D'