Invokes list_targets() with the C++-specific listers.
()
| 60 | |
| 61 | |
| 62 | def list_targets_cpp(): |
| 63 | """ Invokes list_targets() with the C++-specific listers. """ |
| 64 | from .testlist import tests_cpp, demos_cpp, benchmark_cpp |
| 65 | for val in list_targets(tests_cpp, demos_cpp, benchmark_cpp): |
| 66 | yield val |
| 67 | |
| 68 | |
| 69 | def get_all_targets() -> OrderedDict: |