################################################################################# # # CMake configuration for GEOS benchmarks/operation/predicate tests # # Copyright (C) 2017 Mateusz Loskot # # This is free software; you can redistribute and/or modify it under # the terms of the GNU Lesser General Public Licence as published # by the Free Software Foundation. # See the COPYING file for more information. # ################################################################################# if (benchmark_FOUND) add_executable(perf_point_locator PointLocatorPerfTest.cpp) target_include_directories(perf_point_locator PUBLIC $ $ $) target_link_libraries(perf_point_locator PRIVATE benchmark::benchmark geos) endif()