- Maintainer
- {% include "fwmaintainer.html" %}
- Dependencies
{% if fwinfo.tier >= 2 %}
- Qt 5
- Other frameworks
{% else %}
- Qt 5, no other framework required
{% endif %}
- Supported platforms
-
{% for platform in fwinfo.platforms %}
{% if platform.name == "All" %}
Linux, MacOS X, Windows
{% elif platform.name == "UNKNOWN" %}
All the platforms supported by Qt
{% else %}
{{ platform.name }}{% if not loop.last %}, {% endif %}
{% endif %}
{% endfor %}
- Community
- IRC channel: {{ fwinfo.irc|default("#kde-devel") }} on Freenode
- Mailing list
{% if 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 %}
{% endif %}
- Clone URL
git clone git://anongit.kde.org/{{ fwinfo.fancyname|lower }}.git