Warning, /system/dolphin/cmake/DbusInterfaceMacros.cmake is written in an unsupported language. File is not indexed.

0001 macro (generate_and_install_dbus_interface main_project_target header_file output_xml_file)
0002     qt_generate_dbus_interface(
0003         ${header_file}
0004         ${output_xml_file}
0005     )
0006     add_custom_target(
0007         ${output_xml_file}_target
0008         SOURCES ${CMAKE_CURRENT_BINARY_DIR}/${output_xml_file}
0009     )
0010     install(
0011         FILES ${CMAKE_CURRENT_BINARY_DIR}/${output_xml_file}
0012         DESTINATION ${KDE_INSTALL_DBUSINTERFACEDIR}
0013     )
0014     add_dependencies(
0015         ${main_project_target}
0016         ${output_xml_file}_target
0017     )
0018 endmacro ()