aboutsummaryrefslogtreecommitdiffstats
path: root/src/tools/ivigenerator/templates/frontend/CMakeLists.txt.tpl
blob: 4f39367ff178ed522e09f183501a81fd48dbedb9 (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}}module.cpp
    {{module.module_name|lower}}modulefactory.cpp
)