dir_tools.jinja 355 B

12345678910111213
  1. {%- if tools|length -%}
  2. {%- for tool in tools -%}
  3. {%- set path_and_name = rsplit(tool, "/", 2) -%}
  4. {%- set toolPath = path_and_name[0] -%}
  5. {%- set toolName = path_and_name[1] %}
  6. get_built_tool_path(
  7. TOOL_{{ toolName }}_bin
  8. TOOL_{{ toolName }}_dependency
  9. {{ toolPath }}
  10. {{ toolName }}
  11. )
  12. {% endfor -%}
  13. {%- endif -%}