Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 2 additions & 9 deletions controller_manager/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@ if(CMAKE_COMPILER_IS_GNUCXX OR CMAKE_CXX_COMPILER_ID MATCHES "Clang")
endif()

find_package(ament_cmake REQUIRED)
find_package(ament_cmake_python REQUIRED)
find_package(ament_cmake_core REQUIRED)
find_package(ament_index_cpp REQUIRED)
find_package(controller_interface REQUIRED)
Expand Down Expand Up @@ -53,14 +54,6 @@ install(DIRECTORY include/
DESTINATION include
)

install(PROGRAMS
scripts/spawner
scripts/spawner.py # Deprecated
scripts/unspawner
scripts/unspawner.py # Deprecated
DESTINATION lib/${PROJECT_NAME}
)

if(BUILD_TESTING)
find_package(ament_cmake_gmock REQUIRED)
find_package(ament_cmake_gtest REQUIRED)
Expand Down Expand Up @@ -160,7 +153,7 @@ if(BUILD_TESTING)
endif()

# Install Python modules
ament_python_install_package(${PROJECT_NAME})
ament_python_install_package(${PROJECT_NAME} SCRIPTS_DESTINATION lib/${PROJECT_NAME})

ament_export_libraries(
controller_manager
Expand Down
File renamed without changes.
File renamed without changes.
1 change: 1 addition & 0 deletions controller_manager/package.xml
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@
<license>Apache License 2.0</license>

<buildtool_depend>ament_cmake</buildtool_depend>
<buildtool_depend>ament_cmake_python</buildtool_depend>

<depend>ament_index_cpp</depend>
<depend>controller_interface</depend>
Expand Down
21 changes: 0 additions & 21 deletions controller_manager/scripts/spawner

This file was deleted.

21 changes: 0 additions & 21 deletions controller_manager/scripts/unspawner

This file was deleted.

4 changes: 4 additions & 0 deletions controller_manager/setup.cfg
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
[options.entry_points]
console_scripts =
spawner = controller_manager.spawner:main
unspawner = controller_manager.unspawner:main