┌   ┐
54
└   ┘

summaryrefslogtreecommitdiff
path: root/cmake/DbusInterfaceMacros.cmake
diff options
context:
space:
mode:
Diffstat (limited to 'cmake/DbusInterfaceMacros.cmake')
-rw-r--r--cmake/DbusInterfaceMacros.cmake4
1 files changed, 2 insertions, 2 deletions
diff --git a/cmake/DbusInterfaceMacros.cmake b/cmake/DbusInterfaceMacros.cmake
index 0fd2f4c1f..71ad9067d 100644
--- a/cmake/DbusInterfaceMacros.cmake
+++ b/cmake/DbusInterfaceMacros.cmake
@@ -4,7 +4,7 @@ macro (generate_and_install_dbus_interface main_project_target header_file outpu
${output_xml_file}
)
add_custom_target(
- ${output_xml_file}
+ ${output_xml_file}_target
SOURCES ${CMAKE_CURRENT_BINARY_DIR}/${output_xml_file}
)
install(
@@ -13,6 +13,6 @@ macro (generate_and_install_dbus_interface main_project_target header_file outpu
)
add_dependencies(
${main_project_target}
- ${output_xml_file}
+ ${output_xml_file}_target
)
endmacro ()