(env, postfix)
| 157 | return ret_list |
| 158 | |
| 159 | def TargetGetList(env, postfix): |
| 160 | global source_ext |
| 161 | global source_list |
| 162 | |
| 163 | target = env['target'] |
| 164 | |
| 165 | source_ext = postfix |
| 166 | for item in target: |
| 167 | walk_children(item) |
| 168 | |
| 169 | source_list.sort() |
| 170 | |
| 171 | return source_list |
| 172 | |
| 173 | def ProjectInfo(env): |
| 174 |
no test coverage detected