Build System Integration
The Qt Interface Framework Generator is fully integrated in qmake and CMake to generate all or part of a project.
In it's simplest form, qmake/CMake can generate all the source code and the project only needs to configure the type of project to build.
For complex setups, you can combine generated code with application specific code to extend and use the generated code.
QMake
Example:
CONFIG += ifcodegen QT_FOR_CONFIG += interfaceframework !qtConfig(ifcodegen): error("No ifcodegen available") IFCODEGEN_TEMPLATE = frontend IFCODEGEN_SOURCES = example.qface IFCODEGEN_MODULE_NAME = myModule IFCODEGEN_OUTPUT_DIR = myOutputDir IFCODEGEN_ANNOTATIONS = annotation.yaml
The following qmake variables are available:
| IFCODEGEN_TEMPLATE | frontend (default), simulator_backend |
| IFCODEGEN_SOURCES | A single .qface input file. |
| IFCODEGEN_MODULE_NAME | Optional. The name of the module that is using the generated code. |
| IFCODEGEN_OUTPUT_DIR | The output folder where the generated code is placed. The default location is the current build folder. |
| IFCODEGEN_ANNOTATIONS | A list of additional annotation files in YAML format. For more information, see the Annotations Option. |
| IFCODEGEN_IMPORT_PATH | A list of import paths, which are considered when an Interface Definition Language (IDL) file uses an import statement. For more information, see the Import Option. |
For more details on the generator's command line arguments, see Use the Generator.
Note: Since the
ifcodegenhas specific system dependencies, it may not be available in all QtInterfaceFramework installations. In this case, theifcodegenqmake feature is also not available and this can result in build errors.In this case, use the following code snippet that makes sure the build stops and provides a meaningful error message:
QT_FOR_CONFIG += interfaceframework !qtConfig(ifcodegen): error("No ifcodegen available")
CMake
In CMake the following functions and variables are provided by the QtInterfaceFramework package.
Variables
Enable verbose logging for all ifcodegen functions. | |
Search path for ifcodegen templates. |
Commands
Extends a target with files generated from a qface IDL file. | |
Generates files from a qface IDL file. | |
Generates files from a qface IDL file and provides variables for use within CMake. | |
Sets the variable to the given c value within an ifcodegen template. |
QtModule Support
QMake
The integration also supports generating code that you can subsequently compile into a Qt module. Since this module needs to work more closely with Qt's module building system, it shouldn't be loaded using the CONFIG variable, but using the load() function instead. The ifcodegen_qt_module feature replaces the load(qt_module) call.
The following shows how you can integrate the QtIfVehicleFunctions module:
TARGET = QtIfVehicleFunctions
QT = core core-private interfaceframework
CONFIG += c++11 ifcodegen
QT_FOR_CONFIG += interfaceframework
!qtConfig(ifcodegen): error("No ifcodegen available")
...
IFCODEGEN_MODULE_NAME = QtIfVehicleFunctions
IFCODEGEN_SOURCES += ifvehiclefunctions.qface
load(ifcodegen_qt_module)CMake
The following shows how you can use CMake to build the QtIfVehicleFunctions module:
qt_ifcodegen_generate(
IDL_FILES ifvehiclefunctions.qface
TEMPLATE frontend
MODULE_NAME QtIfVehicleFunctions
)
qt_internal_add_module(IfVehicleFunctions
LIBRARIES
Qt::CorePrivate
Qt::InterfaceFrameworkPrivate
PUBLIC_LIBRARIES
Qt::Core
Qt::InterfaceFramework
PRIVATE_MODULE_INTERFACE
Qt::CorePrivate
Qt::InterfaceFrameworkPrivate
)
qt_ifcodegen_extend_target(IfVehicleFunctions
NO_GENERATE
IDL_FILES ifvehiclefunctions.qface
)Before defining the module, the code needs to be generated as it has to be available for syncqt at this point. Afterwards the generated code is used to extend the module target.
SyncQt
In addition to the project file for the module library, the sync.profile also needs to be changed, as it's used to call the syncqt.pl script that generates the forwarding headers. Usually, the sync.profile is setup to search for these headers in the source folders. Using $out_basedir, you can also extend the script to search in the build folder.
...
%modules = ( # path to module name map
"QtIfVehicleFunctions" => "$basedir/src/ifvehiclefunctions;$out_basedir/src/ifvehiclefunctions"
);
...QML Type Registration
Depending on the build system used and the version of the QtInterfaceFramework module, there are several ways for generating QML plugins and registering the QML types.
CMake
The preferred way in CMake is to use the new QML Type registration system, which is available in the QtInterfaceFramework module from version 6.3 onwards. In that version the generated code is already using the new registration macros and provides all the necessary information for CMake to generate the rest:
qt_ifcodegen_extend_target(IfVehicleFunctions
NO_GENERATE
PREFIX VEHICLEFUNCTIONS
IDL_FILES ifvehiclefunctions.qface
)
qt_add_qml_module(IfVehicleFunctions
URI ${VEHICLEFUNCTIONS_URI}
VERSION ${VEHICLEFUNCTIONS_VERSION}
RESOURCE_PREFIX "/"
CLASS_NAME QtIfVehicleFunctionsPlugin
PLUGIN_TARGET qtifvehiclefunctionsplugin
IMPORTS QtInterfaceFramework
)By using the PREFIX argument in the qt_ifcodegen_extend_target call, additional variables get exposed to using VEHICLEFUNCTIONS as their prefix. Those variables can be used in the following call to qt_add_qml_module, which handles the QML type registration for all types and also generates a QML plugin.
Before 6.3
Instead of using the new QML Type registration, ifcodegen can be used to generate a QML plugin, which registers all types when loaded:
qt_ifcodegen_import_variables(VEHICLEFUNCTIONS
IDL_FILES ifvehiclefunctions.qface
TEMPLATE qmlplugin
MODULE_NAME QtIfVehicleFunctions
)
qt_add_qml_module(qtifvehiclefunctionsplugin
URI ${VEHICLEFUNCTIONS_URI}
VERSION ${VEHICLEFUNCTIONS_VERSION}
RESOURCE_PREFIX "/"
PLUGIN_TARGET qtifvehiclefunctionsplugin
NO_PLUGIN_OPTIONAL
NO_GENERATE_PLUGIN_SOURCE
NO_GENERATE_QMLTYPES
NO_GENERATE_QMLDIR
SOURCES
${VEHICLEFUNCTIONS_SOURCES}
PUBLIC_LIBRARIES
Qt::InterfaceFramework
Qt::IfVehicleFunctions
)© 2023 The Qt Company Ltd. Documentation contributions included herein are the copyrights of their respective owners. The documentation provided herein is licensed under the terms of the GNU Free Documentation License version 1.3 as published by the Free Software Foundation. Qt and respective logos are trademarks of The Qt Company Ltd. in Finland and/or other countries worldwide. All other trademarks are property of their respective owners.