File tree Expand file tree Collapse file tree 4 files changed +53
-0
lines changed Expand file tree Collapse file tree 4 files changed +53
-0
lines changed Original file line number Diff line number Diff line change 4
4
# List of all features libraries available.
5
5
add_library (mbed-fpga-ci-test-shield INTERFACE )
6
6
add_library (mbed-client-cli INTERFACE )
7
+ add_library (mbed-greentea INTERFACE )
7
8
8
9
add_subdirectory (frameworks/COMPONENT_FPGA_CI_TEST_SHIELD )
9
10
add_subdirectory (frameworks/mbed-client-cli )
11
+ add_subdirectory (frameworks/greentea-client )
12
+ add_subdirectory (frameworks/unity )
13
+ add_subdirectory (frameworks/utest )
Original file line number Diff line number Diff line change
1
+ # Copyright (c) 2020 ARM Limited. All rights reserved.
2
+ # SPDX-License-Identifier: Apache-2.0
3
+
4
+ target_include_directories (mbed-greentea
5
+ INTERFACE
6
+ .
7
+ greentea-client
8
+ )
9
+
10
+ target_sources (mbed-greentea
11
+ INTERFACE
12
+ source /greentea_metrics.cpp
13
+ source /greentea_test_env.cpp
14
+ )
Original file line number Diff line number Diff line change
1
+ # Copyright (c) 2020 ARM Limited. All rights reserved.
2
+ # SPDX-License-Identifier: Apache-2.0
3
+
4
+ target_include_directories (mbed-greentea
5
+ INTERFACE
6
+ .
7
+ unity
8
+ )
9
+
10
+ target_sources (mbed-greentea
11
+ INTERFACE
12
+ source /unity.c
13
+ )
Original file line number Diff line number Diff line change
1
+ # Copyright (c) 2020 ARM Limited. All rights reserved.
2
+ # SPDX-License-Identifier: Apache-2.0
3
+
4
+ target_include_directories (mbed-greentea
5
+ INTERFACE
6
+ .
7
+ utest
8
+ )
9
+
10
+ target_sources (mbed-greentea
11
+ INTERFACE
12
+ mbed-utest-shim.cpp
13
+ source /unity_handler.cpp
14
+ source /utest_case.cpp
15
+ source /utest_default_handlers.cpp
16
+ source /utest_greentea_handlers.cpp
17
+ source /utest_harness.cpp
18
+ source /utest_print.cpp
19
+ source /utest_shim.cpp
20
+ source /utest_stack_trace.cpp
21
+ source /utest_types.cpp
22
+ )
You can’t perform that action at this time.
0 commit comments