dolphin/cmake/DbusInterfaceMacros.cmake
David Faure 1cb516cb48 Fix "make install" with ninja.
The custom command name must differ from the name of the generated file.
2015-07-29 22:53:06 +02:00

19 lines
540 B
CMake

macro (generate_and_install_dbus_interface main_project_target header_file output_xml_file)
qt5_generate_dbus_interface(
${header_file}
${output_xml_file}
)
add_custom_target(
${output_xml_file}_target
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}_target
)
endmacro ()