Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

adding noether_simulator #51

Open
wants to merge 12 commits into
base: master
Choose a base branch
from
Open
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
16 changes: 15 additions & 1 deletion noether_examples/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,7 @@ find_package(catkin REQUIRED COMPONENTS
roslib
tool_path_planner
vtk_viewer
noether_simulator
)

catkin_package(
Expand All @@ -37,6 +38,7 @@ catkin_package(
roslib
tool_path_planner
vtk_viewer
noether_simulator
DEPENDS
VTK
)
Expand All @@ -62,10 +64,22 @@ target_link_libraries(mesh_segmenter_node
${VTK_LIBRARIES}
)

add_executable(coverage_simulator_client src/coverage_simulator_client.cpp)
add_dependencies(coverage_simulator_client ${${PROJECT_NAME}_EXPORTED_TARGETS}
${catkin_EXPORTED_TARGETS}
${actionlib_tutorials_EXPORTED_TARGETS}
)
target_link_libraries(coverage_simulator_client
${catkin_LIBRARIES}
${VTK_LIBRARIES}
${PCL_LIBRARIES}
)


#############
## Install ##
#############
install(TARGETS mesh_segmenter_client_node mesh_segmenter_node
install(TARGETS mesh_segmenter_client_node mesh_segmenter_node coverage_simulator_client
ARCHIVE DESTINATION ${CATKIN_PACKAGE_LIB_DESTINATION}
LIBRARY DESTINATION ${CATKIN_PACKAGE_LIB_DESTINATION}
RUNTIME DESTINATION ${CATKIN_PACKAGE_BIN_DESTINATION}
Expand Down
3 changes: 3 additions & 0 deletions noether_examples/launch/coverage_sim.launch
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
<launch>
<node name="coverage_sim" pkg="noether_simulator" type="coverage_sim" output="screen"></node>
</launch>
Loading