2b13d0825c
Conflicts: kded/CMakeLists.txt
24 lines
693 B
CMake
24 lines
693 B
CMake
macro (generate_and_install_dbus_interface main_project_target header_file output_xml_file) #OPTIONS qdbus_options
|
|
# qt5_extract_options(
|
|
# extra_files_ignore
|
|
# qdbus_options
|
|
# ${ARGN}
|
|
# )
|
|
qt5_generate_dbus_interface(
|
|
${header_file}
|
|
${output_xml_file}
|
|
# OPTIONS ${qdbus_options}
|
|
)
|
|
add_custom_target(
|
|
${output_xml_file}
|
|
SOURCES ${CMAKE_CURRENT_BINARY_DIR}/${output_xml_file}
|
|
)
|
|
install(
|
|
FILES ${CMAKE_CURRENT_BINARY_DIR}/${output_xml_file}
|
|
DESTINATION ${DBUS_INTERFACES_INSTALL_DIR}
|
|
)
|
|
add_dependencies(
|
|
${main_project_target}
|
|
${output_xml_file}
|
|
)
|
|
endmacro ()
|