summaryrefslogtreecommitdiff
path: root/examples/qtcpp/generator/templates/generated.pri
blob: 31f9aac25f9a47cd1f3798d90fa18ff12619e6ab (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
{# Copyright (c) Pelagicore AB 2016 #}
#############################################################################
## This is an auto-generated file.
## Do not edit! All changes made to it will be lost.
#############################################################################

QT += qml quick
CONFIG += c++11

HEADERS += \
    $$PWD/qml{{module.module_name|lower}}module.h \
{% for interface in module.interfaces %}
    $$PWD/qmlabstract{{interface|lower}}.h \
{% endfor %}
{% for struct in module.structs %}
    $$PWD/qml{{struct|lower}}.h \
    $$PWD/qml{{struct|lower}}model.h {% if not loop.last %}\{% endif %}
{% endfor %}
    

SOURCES += \
    $$PWD/qml{{module.module_name|lower}}module.cpp \
{% for interface in module.interfaces %}
    $$PWD/qmlabstract{{interface|lower}}.cpp \
{% endfor %}
{% for struct in module.structs %}
    $$PWD/qml{{struct|lower}}.cpp \
    $$PWD/qml{{struct|lower}}model.cpp {% if not loop.last %}\{% endif %}
{% endfor %}