W3cubDocs

/Qt 5.15

qt5_generate_repc

Synopsis

qt5_generate_repc(<VAR> rep_file output_type)

Description

Creates rules for calling repc on rep_file. output_type must be either SOURCE or REPLICA. The paths of the generated files are added to <VAR>.

Depending on the output_type argument, the generated code will either implement a Qt Remote Objects Source or a Qt Remote Objects Replica type in C++.

Examples

find_package(Qt5 COMPONENTS RemoteObjects REQUIRED)

set(SOURCES
    main.cpp
    simpleswitch.cpp
)

qt5_generate_repc(SOURCES simpleswitch.rep SOURCE)

add_executable(directconnectserver ${SOURCES})
target_link_libraries(directconnectserver Qt5::RemoteObjects)

© The Qt Company Ltd
Licensed under the GNU Free Documentation License, Version 1.3.
https://doc.qt.io/qt-5.15/qtremoteobjects-cmake-qt5-generate-repc.html