From e4ccad7c4a36f2a6dfaa2d391c00c5ec4ea63d7c Mon Sep 17 00:00:00 2001 From: Dominic Hamon Date: Thu, 14 Dec 2017 09:40:26 -0800 Subject: [PATCH 1/2] Update README.md --- README.md | 1 + 1 file changed, 1 insertion(+) diff --git a/README.md b/README.md index 45e27ed5..52ab6bf5 100644 --- a/README.md +++ b/README.md @@ -2,6 +2,7 @@ [![Build Status](https://travis-ci.org/google/benchmark.svg?branch=master)](https://travis-ci.org/google/benchmark) [![Build status](https://ci.appveyor.com/api/projects/status/u0qsyp7t1tk7cpxs/branch/master?svg=true)](https://ci.appveyor.com/project/google/benchmark/branch/master) [![Coverage Status](https://coveralls.io/repos/google/benchmark/badge.svg)](https://coveralls.io/r/google/benchmark) +[![slackin](https://slackin-iqtfqnpzxd.now.sh/badge.svg)](https://slackin-iqtfqnpzxd.now.sh/) A library to support the benchmarking of functions, similar to unit-tests. From 052421c82337774e769051581a00e66dca58c122 Mon Sep 17 00:00:00 2001 From: Winston Du Date: Thu, 4 Jan 2018 19:13:34 -0500 Subject: [PATCH 2/2] Updated documentation. (#503) For people who get this library via CMake's AddExternalProject like me. Would like a long term tutorial from someone who really understands CMake on how to actually link an externalproject's dependencies to another added external project. --- README.md | 3 +++ 1 file changed, 3 insertions(+) diff --git a/README.md b/README.md index 52ab6bf5..6bd81e70 100644 --- a/README.md +++ b/README.md @@ -39,6 +39,9 @@ dependency can be provided three ways: * Otherwise, if nothing is done, CMake will use `find_package(GTest REQUIRED)` to resolve the required GTest dependency. +If you do not wish to build and run the tests, add `-DBENCHMARK_ENABLE_GTEST_TESTS=OFF` +to `CMAKE_ARGS`. + ## Installation Guide