|
| 1 | +# Licensed to the Apache Software Foundation (ASF) under one |
| 2 | +# or more contributor license agreements. See the NOTICE file |
| 3 | +# distributed with this work for additional information |
| 4 | +# regarding copyright ownership. The ASF licenses this file |
| 5 | +# to you under the Apache License, Version 2.0 (the |
| 6 | +# "License"); you may not use this file except in compliance |
| 7 | +# with the License. You may obtain a copy of the License at |
| 8 | +# |
| 9 | +# http://www.apache.org/licenses/LICENSE-2.0 |
| 10 | +# |
| 11 | +# Unless required by applicable law or agreed to in writing, |
| 12 | +# software distributed under the License is distributed on an |
| 13 | +# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY |
| 14 | +# KIND, either express or implied. See the License for the |
| 15 | +# specific language governing permissions and limitations |
| 16 | +# under the License. |
| 17 | + |
| 18 | +set(BENCHMARK_ENABLE_GTEST_TESTS |
| 19 | + OFF |
| 20 | + CACHE BOOL "" FORCE) |
| 21 | +set(BENCHMARK_ENABLE_INSTALL |
| 22 | + OFF |
| 23 | + CACHE BOOL "" FORCE) |
| 24 | +set(BENCHMARK_ENABLE_TESTING |
| 25 | + OFF |
| 26 | + CACHE BOOL "" FORCE) |
| 27 | + |
| 28 | +fetchcontent_declare(google_benchmark |
| 29 | + GIT_REPOSITORY https://github.com/google/benchmark.git |
| 30 | + GIT_TAG a4cf155615c63e019ae549e31703bf367df5b471 # v1.8.4 |
| 31 | + FIND_PACKAGE_ARGS |
| 32 | + NAMES |
| 33 | + benchmark |
| 34 | + CONFIG) |
| 35 | +fetchcontent_makeavailable(google_benchmark) |
| 36 | + |
| 37 | +add_executable(metrics_evaluator_benchmark metrics_evaluator_benchmark.cc) |
| 38 | +target_link_libraries(metrics_evaluator_benchmark |
| 39 | + PRIVATE "$<IF:$<TARGET_EXISTS:iceberg_static>,iceberg_static,iceberg_shared>" |
| 40 | + "$<IF:$<TARGET_EXISTS:benchmark::benchmark>,benchmark::benchmark,benchmark>" |
| 41 | +) |
0 commit comments