Support system Google Benchmark

dont-compose-content
elsid 4 years ago
parent 126cf40848
commit d85cbe4069
No known key found for this signature in database
GPG Key ID: B845CB9FEE18AB40

@ -1,3 +1,8 @@
option(OPENMW_USE_SYSTEM_BENCHMARK "Use system Google Benchmark library." OFF)
if(OPENMW_USE_SYSTEM_BENCHMARK)
find_package(benchmark REQUIRED)
else()
cmake_minimum_required(VERSION 3.11)
set(BENCHMARK_ENABLE_TESTING OFF)
@ -17,6 +22,7 @@ FetchContent_Declare(benchmark
FetchContent_MakeAvailableExcludeFromAll(benchmark)
set(CMAKE_CXX_FLAGS "${SAVED_CMAKE_CXX_FLAGS}")
endif()
openmw_add_executable(openmw_detournavigator_navmeshtilescache_benchmark detournavigator/navmeshtilescache.cpp)
target_compile_features(openmw_detournavigator_navmeshtilescache_benchmark PRIVATE cxx_std_17)

Loading…
Cancel
Save