kdeconnect-kde/cmake/DbusInterfaceMacros.cmake

25 lines
730 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}
)
# don't install until API is stable
# install(
# FILES ${CMAKE_CURRENT_BINARY_DIR}/${output_xml_file}
# DESTINATION ${DBUS_INTERFACES_INSTALL_DIR}
# )
add_dependencies(
${main_project_target}
${output_xml_file}
)
endmacro ()