Skip to content

Commit

Permalink
Replaced csv_control with simple_control for now for testing
Browse files Browse the repository at this point in the history
  • Loading branch information
willnatsan committed Jun 5, 2024
1 parent f981909 commit 5e2ef1f
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 106 deletions.
10 changes: 5 additions & 5 deletions ur10e_control/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -10,13 +10,13 @@ find_package(ament_cmake REQUIRED)
find_package(moveit_ros_planning_interface REQUIRED)
find_package(rclcpp REQUIRED)

add_executable(csv_control src/csv_control.cpp)
target_include_directories(csv_control PUBLIC
add_executable(simple_control src/simple_control.cpp)
target_include_directories(simple_control PUBLIC
$<BUILD_INTERFACE:${CMAKE_CURRENT_SOURCE_DIR}/include>
$<INSTALL_INTERFACE:include>)
target_compile_features(csv_control PUBLIC c_std_99 cxx_std_17) # Require C99 and C++17
target_compile_features(simple_control PUBLIC c_std_99 cxx_std_17) # Require C99 and C++17
ament_target_dependencies(
csv_control
simple_control
"moveit_ros_planning_interface"
"rclcpp"
)
Expand All @@ -26,7 +26,7 @@ install (
DESTINATION share/${PROJECT_NAME}
)

install(TARGETS csv_control
install(TARGETS simple_control
DESTINATION lib/${PROJECT_NAME})

if(BUILD_TESTING)
Expand Down
101 changes: 0 additions & 101 deletions ur10e_control/src/csv_control.cpp

This file was deleted.

0 comments on commit 5e2ef1f

Please sign in to comment.