aboutsummaryrefslogtreecommitdiffstats
path: root/build/export_generators/cmake/dir_tools.jinja
blob: 9857f383ca22ff8018825ac4b484b36634be97b5 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
{%- if tools|length -%}
{%-     for tool in tools -%}
{%-         set path_and_name = rsplit(tool, "/", 2) -%}
{%-         set toolPath = path_and_name[0] -%}
{%-         set toolName = path_and_name[1] %}
get_built_tool_path(
  TOOL_{{ toolName }}_bin
  TOOL_{{ toolName }}_dependency
  {{ toolPath }}
  {{ toolName }}
)
{%      endfor -%}
{%- endif -%}