From 8e385772cd14529741796dab6937884a951f854a Mon Sep 17 00:00:00 2001 From: elianalf <62831776+elianalf@users.noreply.github.com> Date: Mon, 29 Jul 2024 14:18:58 +0200 Subject: [PATCH] Fix rtps example installation path (#5113) Signed-off-by: elianalf <62831776+elianalf@users.noreply.github.com> --- examples/cpp/rtps/CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/examples/cpp/rtps/CMakeLists.txt b/examples/cpp/rtps/CMakeLists.txt index 7506022bde8..01114865e24 100644 --- a/examples/cpp/rtps/CMakeLists.txt +++ b/examples/cpp/rtps/CMakeLists.txt @@ -48,7 +48,7 @@ target_compile_definitions(rtps PRIVATE ) target_link_libraries(rtps fastdds fastcdr foonathan_memory) install(TARGETS rtps - RUNTIME DESTINATION {DATA_INSTALL_DIR}/fastdds/examples/cpp/rtps/${BIN_INSTALL_DIR} + RUNTIME DESTINATION ${DATA_INSTALL_DIR}/fastdds/examples/cpp/rtps/${BIN_INSTALL_DIR} ) # Copy the XML files over to the build directory