{# # Copyright (C) 2021 The Qt Company Ltd. # Copyright (C) 2019 Luxoft Sweden AB # Copyright (C) 2018 Pelagicore AG # SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0-only WITH Qt-GPL-exception-1.0 #} {% include "common/generated_comment.qmake.jinja" %} HEADERS += \ {% for interface in module.interfaces %} $$PWD/{{interface|lower}}backend.h \ {% endfor %} $$PWD/{{module.module_name|lower}}simulatorplugin.h SOURCES += \ {% for interface in module.interfaces %} $$PWD/{{interface|lower}}backend.cpp \ {% endfor %} $$PWD/{{module.module_name|lower}}simulatorplugin.cpp RESOURCES += $$PWD/{{module.module_name|lower}}_simulation.qrc OTHER_FILES += \ $$PWD/{{module.module_name|lower}}.json \ $$PWD/{{module.module_name|lower}}_simulation_data.json