aboutsummaryrefslogtreecommitdiff
path: root/README.md
diff options
context:
space:
mode:
authorMarco Poletti <poletti.marco@gmail.com>2017-03-19 11:18:10 +0000
committerMarco Poletti <poletti.marco@gmail.com>2017-03-19 11:18:10 +0000
commit46a3d9298561bd467bbf8083a88c9bbe313e5ed2 (patch)
tree6a657933f91eab762a57cc2abd57076a90aa7895 /README.md
parent1451d7715139c784353f2749db2e87000c983669 (diff)
downloadgoogle-fruit-46a3d9298561bd467bbf8083a88c9bbe313e5ed2.tar.gz
Add a CI badge for Windows.
Also improve badge labels, switching to badges from shields.io.
Diffstat (limited to 'README.md')
-rw-r--r--README.md5
1 files changed, 3 insertions, 2 deletions
diff --git a/README.md b/README.md
index b39471d..e1a4f25 100644
--- a/README.md
+++ b/README.md
@@ -1,6 +1,7 @@
-[![Build Status](https://travis-ci.org/google/fruit.svg?branch=master)](https://travis-ci.org/google/fruit)
-[![Coverity Scan Status](https://scan.coverity.com/projects/8486/badge.svg)](https://scan.coverity.com/projects/google-fruit)
+[![Build Status](https://img.shields.io/travis/google/fruit/master.svg?label=Linux/OSX%20build/tests)](https://travis-ci.org/google/fruit)
+[![Build status](https://img.shields.io/appveyor/ci/poletti-marco/fruit/master.svg?label=Windows%20build/tests)](https://ci.appveyor.com/project/poletti-marco/fruit)
+[![Coverity Scan Status](https://img.shields.io/coverity/scan/8486.svg?label=Coverity%20scan)](https://scan.coverity.com/projects/google-fruit)
Fruit is a [dependency injection](http://en.wikipedia.org/wiki/Dependency_injection) framework for C++, loosely inspired by the Guice framework for Java. It uses C++ metaprogramming together with some new C++11 features to detect most injection problems at compile-time.
It allows to split the implementation code in "components" (aka modules) that can be assembled to form other components.