-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Compile benchmarks as separate modules and fix broken compilations of…
… executable files (#44) * Compile benchmarks as separate modules * Decrease diff * Fix Prefix
- Loading branch information
1 parent
eda9ff1
commit 60d8748
Showing
9 changed files
with
56 additions
and
44 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
File renamed without changes.
File renamed without changes.
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,24 @@ | ||
add_executable( | ||
scenario_basic_service_client_benchmark_main | ||
scenario_basic_service_client_benchmark_main.cpp | ||
scenario_basic_service_client.cpp) | ||
|
||
ament_target_dependencies( | ||
scenario_basic_service_client_benchmark_main | ||
PUBLIC | ||
rclcpp | ||
benchmark | ||
std_msgs | ||
example_interfaces | ||
ament_index_cpp) | ||
|
||
target_include_directories( | ||
scenario_basic_service_client_benchmark_main | ||
PUBLIC $<INSTALL_INTERFACE:include> | ||
$<BUILD_INTERFACE:${CMAKE_CURRENT_SOURCE_DIR}/../../include>) | ||
|
||
target_link_libraries(scenario_basic_service_client_benchmark_main | ||
PUBLIC benchmark::benchmark ${YAML_CPP_LIBRARIES}) | ||
|
||
install(TARGETS scenario_basic_service_client_benchmark_main | ||
DESTINATION lib/moveit_middleware_benchmark) |
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,26 @@ | ||
add_executable( | ||
scenario_perception_pipeline_benchmark_main | ||
scenario_perception_pipeline_benchmark_main.cpp | ||
scenario_perception_pipeline.cpp) | ||
|
||
ament_target_dependencies( | ||
scenario_perception_pipeline_benchmark_main | ||
PUBLIC | ||
moveit_ros_planning_interface | ||
rclcpp | ||
benchmark | ||
dynmsg | ||
nav_msgs | ||
yaml-cpp | ||
example_interfaces) | ||
|
||
target_include_directories( | ||
scenario_perception_pipeline_benchmark_main | ||
PUBLIC $<INSTALL_INTERFACE:include> | ||
$<BUILD_INTERFACE:${CMAKE_CURRENT_SOURCE_DIR}/../../include>) | ||
|
||
target_link_libraries(scenario_perception_pipeline_benchmark_main | ||
PUBLIC benchmark::benchmark ${YAML_CPP_LIBRARIES}) | ||
|
||
install(TARGETS scenario_perception_pipeline_benchmark_main | ||
DESTINATION lib/moveit_middleware_benchmark) |
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