conanfile.jinja 791 B

1234567891011121314151617181920212223242526272829303132333435363738
  1. [requires]
  2. {%- if conan.requires is defined -%}
  3. {%- for package in conan.requires %}
  4. {{ package }}
  5. {%- endfor -%}
  6. {%- endif %}
  7. [tool_requires]
  8. {%- if conan.tool_requires is defined -%}
  9. {%- for package in conan.tool_requires %}
  10. {{ package }}
  11. {%- endfor -%}
  12. {%- endif %}
  13. [options]
  14. {%- if conan.options is defined -%}
  15. {%- for option in conan.options %}
  16. {{ option }}
  17. {%- endfor -%}
  18. {%- endif %}
  19. [imports]
  20. {%- if conan.imports is defined -%}
  21. {%- for import_ in conan.imports %}
  22. {{ import_ }}
  23. {%- endfor -%}
  24. {%- endif %}
  25. [generators]
  26. cmake_find_package
  27. cmake_paths
  28. {%- if conan.generators is defined -%}
  29. {%- for generator in conan.generators %}
  30. {{ generator }}
  31. {%- endfor -%}
  32. {%- endif %}
  33. {%- include "[generator]/debug_conan.jinja" ignore missing -%}