[geos-commits] [SCM] GEOS branch master updated. b4a786c910080d716cbf8c1230eada9077f118c2

git at osgeo.org git at osgeo.org
Tue Mar 2 08:40:51 PST 2021


This is an automated email from the git hooks/post-receive script. It was
generated because a ref change was pushed to the repository containing
the project "GEOS".

The branch, master has been updated
       via  b4a786c910080d716cbf8c1230eada9077f118c2 (commit)
      from  89886fb23e92e411579155a42b245011131017cf (commit)

Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.

- Log -----------------------------------------------------------------
commit b4a786c910080d716cbf8c1230eada9077f118c2
Author: Daniel Baston <dbaston at gmail.com>
Date:   Tue Mar 2 11:40:36 2021 -0500

    Quiet CMake warnings when Benchmark library not found

diff --git a/benchmarks/algorithm/CMakeLists.txt b/benchmarks/algorithm/CMakeLists.txt
index d9c8cbc..2ee1454 100644
--- a/benchmarks/algorithm/CMakeLists.txt
+++ b/benchmarks/algorithm/CMakeLists.txt
@@ -19,7 +19,7 @@ target_link_libraries(perf_voronoi geos)
 add_executable(perf_unaryunion_segments UnaryUnionSegmentsPerfTest.cpp)
 target_link_libraries(perf_unaryunion_segments geos)
 
-find_package(benchmark)
+find_package(benchmark QUIET)
 if (benchmark_FOUND)
     add_executable(perf_orientation OrientationIndexPerfTest.cpp
             ${CMAKE_SOURCE_DIR}/src/algorithm/CGAlgorithmsDD.cpp
diff --git a/benchmarks/algorithm/locate/CMakeLists.txt b/benchmarks/algorithm/locate/CMakeLists.txt
index b4cd9f3..baa27cb 100644
--- a/benchmarks/algorithm/locate/CMakeLists.txt
+++ b/benchmarks/algorithm/locate/CMakeLists.txt
@@ -11,7 +11,7 @@
 #
 #################################################################################
 
-find_package(benchmark)
+find_package(benchmark QUIET)
 if (benchmark_FOUND)
     add_executable(perf_indexed_point_in_area_locator IndexedPointInAreaLocatorPerfTest.cpp)
     target_include_directories(perf_indexed_point_in_area_locator PUBLIC
diff --git a/benchmarks/geom/CMakeLists.txt b/benchmarks/geom/CMakeLists.txt
index 322d3e3..ff4a953 100644
--- a/benchmarks/geom/CMakeLists.txt
+++ b/benchmarks/geom/CMakeLists.txt
@@ -9,7 +9,7 @@
 # See the COPYING file for more information.
 ################################################################################
 
-find_package(benchmark)
+find_package(benchmark QUIET)
 
 IF(benchmark_FOUND)
     add_executable(perf_envelope
diff --git a/benchmarks/index/chain/CMakeLists.txt b/benchmarks/index/chain/CMakeLists.txt
index e1a784b..21955df 100644
--- a/benchmarks/index/chain/CMakeLists.txt
+++ b/benchmarks/index/chain/CMakeLists.txt
@@ -9,7 +9,7 @@
 # See the COPYING file for more information.
 ################################################################################
 
-find_package(benchmark)
+find_package(benchmark QUIET)
 
 IF(benchmark_FOUND)
     add_executable(perf_monotone_chain MonotoneChainPerfTest.cpp)

-----------------------------------------------------------------------

Summary of changes:
 benchmarks/algorithm/CMakeLists.txt        | 2 +-
 benchmarks/algorithm/locate/CMakeLists.txt | 2 +-
 benchmarks/geom/CMakeLists.txt             | 2 +-
 benchmarks/index/chain/CMakeLists.txt      | 2 +-
 4 files changed, 4 insertions(+), 4 deletions(-)


hooks/post-receive
-- 
GEOS


More information about the geos-commits mailing list