summaryrefslogtreecommitdiff
path: root/src/tools/ivigenerator/templates/frontend/CMakeLists.txt.tpl
blob: 347b2885337d0cf1a7efb4dca575b36f06706b68 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
target_compile_definitions(${CURRENT_TARGET} PRIVATE QT_BUILD_{{module|upper|replace('.', '_')|strip_QT}}_LIB)

target_sources(${CURRENT_TARGET}
               PRIVATE
{% for interface in module.interfaces %}
    {{interface|lower}}.cpp
    {{interface|lower}}backendinterface.cpp
{% endfor %}
{% for struct in module.structs %}
    {{struct|lower}}.cpp
{% endfor %}
    {{module.module_name|lower}}.cpp
    {{module.module_name|lower}}factory.cpp
)