From 0362712fc3b4b89c769e454010733296ef2cd01c Mon Sep 17 00:00:00 2001 From: Dawid Drozd Date: Fri, 14 Jun 2019 07:12:23 +0200 Subject: [PATCH] Update google benchmark submodule to v1.5.0 --- performance/CMakeLists.txt | 3 ++- performance/benchmark | 2 +- performance/src/EventBusPerformance.cpp | 2 -- 3 files changed, 3 insertions(+), 4 deletions(-) diff --git a/performance/CMakeLists.txt b/performance/CMakeLists.txt index 8f0c995..16a0f8c 100644 --- a/performance/CMakeLists.txt +++ b/performance/CMakeLists.txt @@ -7,6 +7,7 @@ set(CMAKE_CXX_STANDARD 14) find_package(Poco COMPONENTS Foundation Util) +set(BENCHMARK_ENABLE_GTEST_TESTS OFF) add_subdirectory(benchmark/) if (NOT TARGET Dexode::EventBus) @@ -45,7 +46,7 @@ target_include_directories(EventBusPerformance PUBLIC target_link_libraries(EventBusPerformance PUBLIC Dexode::EventBus - benchmark + benchmark benchmark_main $<$:Poco::Foundation> $<$:Poco::Util> ) diff --git a/performance/benchmark b/performance/benchmark index 5b7683f..090faec 160000 --- a/performance/benchmark +++ b/performance/benchmark @@ -1 +1 @@ -Subproject commit 5b7683f49e1e9223cf9927b24f6fd3d6bd82e3f8 +Subproject commit 090faecb454fbd6e6e17a75ef8146acb037118d4 diff --git a/performance/src/EventBusPerformance.cpp b/performance/src/EventBusPerformance.cpp index 11363a0..1ed8c0c 100644 --- a/performance/src/EventBusPerformance.cpp +++ b/performance/src/EventBusPerformance.cpp @@ -265,5 +265,3 @@ BENCHMARK(check10NotificationsFor1kListeners); // BENCHMARK(check1kNotificationsFor1kListeners); //Not available // BENCHMARK(check100NotificationsFor10kListeners); //Not available BENCHMARK(checkNotifyFor10kListenersWhenNoOneListens); - -BENCHMARK_MAIN()