blob: 5e798da71dab1126b74be502563fb51c212f2d4a (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
{%- if current_target.custom_runs|length -%}
{%- for custom_run in current_target.custom_runs -%}
{{ ObjDepends(custom_run) }}
{%- endfor -%}
{%- endif -%}
{%- if current_target.runs|length -%}
{%- for run in current_target.runs -%}
{{ ObjDepends(run) }}
{%- endfor -%}
{%- endif -%}
{%- if copy_files|length -%}
{%- for copy in copy_files -%}
{{ ObjDepends(copy) }}
{%- endfor -%}
{%- endif -%}
{%- if move_files|length -%}
{%- for move in move_files -%}
{{ ObjDepends(move) }}
{%- endfor -%}
{%- endif -%}
|