aboutsummaryrefslogtreecommitdiffstats
path: root/build/export_generators/cmake/dir_tools.jinja
blob: 6b1bede90b9234871ec0d39b8b174fffbf62e101 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
{%- if tools is defined -%}
{%-     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 -%}