Skip to content

Commit

Permalink
add cmake test for mf_localization package, fix format, remove unnece…
Browse files Browse the repository at this point in the history
…ssary files

Signed-off-by: Daisuke Sato <[email protected]>
  • Loading branch information
daisukes committed Feb 25, 2024
1 parent 0fb5cc6 commit 8f2ace0
Show file tree
Hide file tree
Showing 27 changed files with 110 additions and 1,541 deletions.
17 changes: 15 additions & 2 deletions mf_localization/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -13,14 +13,27 @@ install(DIRECTORY launch/ DESTINATION share/${PROJECT_NAME}/launch)
install(DIRECTORY configuration_files/ DESTINATION share/${PROJECT_NAME}/configuration_files)

if(BUILD_TESTING)
find_package(ament_lint_auto REQUIRED)
find_package(ament_cmake_copyright REQUIRED)
find_package(ament_cmake_cpplint REQUIRED)
find_package(ament_cmake_flake8 REQUIRED)
find_package(ament_cmake_lint_cmake REQUIRED)
find_package(ament_cmake_uncrustify REQUIRED)
find_package(ament_cmake_xmllint REQUIRED)

set(MAX_LINE_LENGTH 250)
ament_copyright()
ament_cpplint(MAX_LINE_LENGTH ${MAX_LINE_LENGTH})
ament_flake8(MAX_LINE_LENGTH ${MAX_LINE_LENGTH})
ament_lint_cmake()
ament_uncrustify(MAX_LINE_LENGTH ${MAX_LINE_LENGTH})
ament_xmllint()
endif()

ament_python_install_package(${PROJECT_NAME})

add_executable(multi_floor_topic_proxy
src/multi_floor_topic_proxy.cpp
)
)

ament_target_dependencies(multi_floor_topic_proxy
rclcpp
Expand Down
1 change: 0 additions & 1 deletion mf_localization/launch/build/.built_by

This file was deleted.

Empty file.
1 change: 0 additions & 1 deletion mf_localization/launch/install/.colcon_install_layout

This file was deleted.

Empty file.
Loading

0 comments on commit 8f2ace0

Please sign in to comment.