Skip to content

Commit

Permalink
fix: remove "/" after DESTINATION lib/${PROJECT_NAME} to make sure pa…
Browse files Browse the repository at this point in the history
…th correct

Signed-off-by: homalozoa <nx.tardis@gmail.com>
  • Loading branch information
homalozoa committed Oct 24, 2024
1 parent cce39f5 commit ea1f4e5
Show file tree
Hide file tree
Showing 6 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion ch3/logging/ch3_logging_cpp/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ ament_target_dependencies(${executable_stuck}
install(
TARGETS ${executable_test}
TARGETS ${executable_stuck}
DESTINATION lib/${PROJECT_NAME}/
DESTINATION lib/${PROJECT_NAME}
)

if(BUILD_TESTING)
Expand Down
2 changes: 1 addition & 1 deletion ch3/param/ch3_param_cpp/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ ament_target_dependencies(${executable}

install(
TARGETS ${executable}
DESTINATION lib/${PROJECT_NAME}/
DESTINATION lib/${PROJECT_NAME}
)

if(BUILD_TESTING)
Expand Down
2 changes: 1 addition & 1 deletion ch6/ch6_bag_cpp/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ ament_target_dependencies(${executable_bag}
install(
TARGETS ${executable_data}
TARGETS ${executable_bag}
DESTINATION lib/${PROJECT_NAME}/
DESTINATION lib/${PROJECT_NAME}
)

if(BUILD_TESTING)
Expand Down
2 changes: 1 addition & 1 deletion ch6/ch6_debug_cpp/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ ament_target_dependencies(${executable_debug}

install(
TARGETS ${executable_debug}
DESTINATION lib/${PROJECT_NAME}/
DESTINATION lib/${PROJECT_NAME}
)

install(
Expand Down
2 changes: 1 addition & 1 deletion ch7/diagnostics/ch7_diagnostics_cpp/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ ament_target_dependencies(${executable_freqchecker}
install(
TARGETS ${executable_simpleupdater}
TARGETS ${executable_freqchecker}
DESTINATION lib/${PROJECT_NAME}/
DESTINATION lib/${PROJECT_NAME}
)

install(
Expand Down
2 changes: 1 addition & 1 deletion ch7/sensor/ch7_msgfltr_cpp/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ ament_target_dependencies(${executable_fltr}

install(
TARGETS ${executable_fltr}
DESTINATION lib/${PROJECT_NAME}/
DESTINATION lib/${PROJECT_NAME}
)

if(BUILD_TESTING)
Expand Down

0 comments on commit ea1f4e5

Please sign in to comment.