meson.build 1.2 KB
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22
###################################################################################
#                                                                                 #
# NAME: examples/example_4/test/test_runners/meson.build                          #
#                                                                                 #
# AUTHOR: Mike Karlesky, Mark VanderVoord, Greg Williams.                         #
# WRITTEN BY: Michael Brockus.                                                    #
#                                                                                 #
# License: MIT                                                                    #
#                                                                                 #
###################################################################################



test_src_1 = [ 
    'TestProductionCode_Runner.c',
    join_paths('..' ,'TestProductionCode.c')
    ]
test_src_2 = [ 
    'TestProductionCode2_Runner.c',
    join_paths('..' ,'TestProductionCode2.c') 
    ]

23 24
test('Test production code one', executable('test-1', test_src_1, dependencies: [ a_dep, unity_dep ]))
test('Test production code two', executable('test-2', test_src_2, dependencies: [ b_dep, unity_dep ]))