-
Notifications
You must be signed in to change notification settings - Fork 26
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #40 from kroshu/feature/rox_driver
Feature/rox driver
- Loading branch information
Showing
51 changed files
with
2,949 additions
and
9 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,61 @@ | ||
cmake_minimum_required(VERSION 3.5) | ||
project(eci_demo) | ||
|
||
# Common cmake code applied to all moveit packages | ||
find_package(moveit_common REQUIRED) | ||
moveit_package() | ||
|
||
if(CMAKE_COMPILER_IS_GNUCXX OR CMAKE_CXX_COMPILER_ID MATCHES "Clang") | ||
add_compile_options(-Wpedantic) | ||
endif() | ||
|
||
# find dependencies | ||
find_package(ament_cmake REQUIRED) | ||
find_package(moveit_common REQUIRED) | ||
find_package(moveit_ros_planning_interface REQUIRED) | ||
find_package(rosidl_default_runtime REQUIRED) | ||
find_package(rclcpp REQUIRED) | ||
find_package(moveit_visual_tools REQUIRED) | ||
find_package(rviz_visual_tools REQUIRED) | ||
find_package(moveit_msgs REQUIRED) | ||
|
||
add_executable(moveit_circular src/MoveitCircular.cpp) | ||
ament_target_dependencies(moveit_circular | ||
moveit_ros_planning_interface | ||
rclcpp | ||
rviz_visual_tools | ||
moveit_visual_tools | ||
) | ||
|
||
install(TARGETS moveit_circular | ||
EXPORT export_${PROJECT_NAME} | ||
DESTINATION lib/${PROJECT_NAME} | ||
) | ||
install(DIRECTORY launch | ||
DESTINATION share/${PROJECT_NAME} | ||
) | ||
install(DIRECTORY config | ||
DESTINATION share/${PROJECT_NAME} | ||
) | ||
|
||
if(BUILD_TESTING) | ||
find_package(ament_cmake_copyright REQUIRED) | ||
find_package(ament_cmake_cppcheck REQUIRED) | ||
find_package(ament_cmake_pep257 REQUIRED) | ||
find_package(ament_cmake_flake8 REQUIRED) | ||
find_package(ament_cmake_cpplint REQUIRED) | ||
find_package(ament_cmake_lint_cmake REQUIRED) | ||
find_package(ament_cmake_uncrustify REQUIRED) | ||
find_package(ament_cmake_xmllint REQUIRED) | ||
|
||
ament_copyright() | ||
ament_cppcheck(--language=c++) | ||
ament_pep257() | ||
ament_flake8() | ||
ament_cpplint() | ||
ament_lint_cmake() | ||
ament_uncrustify() | ||
ament_xmllint() | ||
endif() | ||
|
||
ament_package() |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
Any contribution that you make to this repository will | ||
be under the Apache 2 License, as dictated by that | ||
[license](http://www.apache.org/licenses/LICENSE-2.0.html): | ||
|
||
~~~ | ||
5. Submission of Contributions. Unless You explicitly state otherwise, | ||
any Contribution intentionally submitted for inclusion in the Work | ||
by You to the Licensor shall be under the terms and conditions of | ||
this License, without any additional terms or conditions. | ||
Notwithstanding the above, nothing herein shall supersede or modify | ||
the terms of any separate license agreement you may have executed | ||
with Licensor regarding such Contributions. | ||
~~~ | ||
|
Oops, something went wrong.