About {{ fwinfo.fancyname }}

{{ fwinfo.description }}

Maintainer{% if fwinfo.maintainers|count > 1 %}s{% endif %}
{% set product = fwinfo %}{% include "maintainers.html" %}
Supported platforms
{% for platform in fwinfo.platforms | sort %} {% if platform.name == "UNKNOWN" %} All the platforms supported by Qt {% else %} {{ platform }}{% if not loop.last %}, {% endif %} {% endif %} {% endfor %}
Community
{% if fwinfo.irc %}
IRC: #{{ fwinfo.irc }} on Libera Chat
{% endif %} {% if fwinfo.mailinglist %}
Mailing list: {{ fwinfo.mailinglist }}
{% endif %} {% if fwinfo.libraries is iterable and fwinfo.libraries|count != 0 %}
Use with CMake
find_package({{ fwinfo.cmakename }})
target_link_libraries(yourapp{% for lib in fwinfo.libraries %} {{ lib.cmake }}{% endfor %})
{% endif %} {% if fwinfo.libraries|selectattr("qmake")|list|count != 0 %}
Use with QMake
QT +={% for lib in fwinfo.libraries|selectattr("qmake") %} {{ lib.qmake }}{% endfor %} {% for line in fwinfo.qmakepro %}
{{ line }} {% endfor %}
{% endif %} {% if fwinfo.libraries|selectattr("license")|list|count != 0 %}
Licenses
{% for lib in fwinfo.libraries|selectattr("license") %}
{{ lib.cmake }}: {{ lib.license }}
{% endfor %} {% endif %} {% if fwinfo.repopath %}
Clone with SSH
git clone git@invent.kde.org:{{ fwinfo.repopath }}.git
Clone with HTTPS
git clone https://invent.kde.org/{{ fwinfo.repopath }}.git
Browse source
{{ fwinfo.fancyname }} on invent.kde.org
{% endif %}