Skip to content

Commit 9d9a87e

Browse files
authored
Merge pull request #182 from KumarRobotics/patch-remove-internet-requirement
remove benchmark stuff that requires internet connection
2 parents 88242e3 + ccededa commit 9d9a87e

File tree

2 files changed

+17
-18
lines changed

2 files changed

+17
-18
lines changed

autonomy_core/map_plan/mapper/CMakeLists.txt

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -49,14 +49,14 @@ target_link_libraries(test_voxel_mapper ${catkin_LIBRARIES} ${PROJECT_NAME})
4949
# e.g. from the catkin root directory run:
5050
# ./build/mapper/_deps/benchmark-src/tools/compare.py benchmarks file1.json file2.json
5151

52-
include(FetchContent)
53-
FetchContent_Declare(
54-
benchmark
55-
URL https://github.com/google/benchmark/archive/b7afda2cd2d81230737caa1073e160b6406798d7.zip
56-
)
57-
FetchContent_MakeAvailable(benchmark)
58-
59-
add_executable(benchmarking test/benchmark_voxel_mapper.cpp)
60-
target_link_libraries(benchmarking benchmark::benchmark ${PROJECT_NAME})
52+
# include(FetchContent)
53+
# FetchContent_Declare(
54+
# benchmark
55+
# URL https://github.com/google/benchmark/archive/b7afda2cd2d81230737caa1073e160b6406798d7.zip
56+
# )
57+
# FetchContent_MakeAvailable(benchmark)
58+
59+
# add_executable(benchmarking test/benchmark_voxel_mapper.cpp)
60+
# target_link_libraries(benchmarking benchmark::benchmark ${PROJECT_NAME})
6161

6262

autonomy_core/map_plan/mpl/CMakeLists.txt

Lines changed: 8 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -54,14 +54,13 @@ target_link_libraries(test_map_util ${catkin_LIBRARIES} ${PROJECT_NAME})
5454
# e.g. from the catkin root directory run:
5555
# ./build/motion_primitive_library/_deps/benchmark-src/tools/compare.py benchmarks file1.json file2.json
5656

57-
#include(FetchContent)
58-
#FetchContent_Declare(
59-
# benchmark
60-
# URL https://github.com/google/benchmark/archive/b7afda2cd2d81230737caa1073e160b6406798d7.zip
61-
#)
62-
#FetchContent_MakeAvailable(benchmark)
63-
64-
#add_executable(map_util_benchmarking test/benchmark_map_util.cpp)
65-
#target_link_libraries(map_util_benchmarking benchmark::benchmark ${PROJECT_NAME})
6657

58+
# include(FetchContent)
59+
# FetchContent_Declare(
60+
# benchmark
61+
# URL https://github.com/google/benchmark/archive/b7afda2cd2d81230737caa1073e160b6406798d7.zip
62+
# )
63+
# FetchContent_MakeAvailable(benchmark)
6764

65+
# add_executable(map_util_benchmarking test/benchmark_map_util.cpp)
66+
# target_link_libraries(map_util_benchmarking benchmark::benchmark ${PROJECT_NAME})

0 commit comments

Comments
 (0)