From b8221040d24eef3e92525f1fe27e0e5beb7503e7 Mon Sep 17 00:00:00 2001 From: NeroBurner Date: Thu, 21 Jun 2018 12:07:38 +0200 Subject: [PATCH] [skip CI] add badges to README, rename to markdown --- README | 5 ----- README.md | 10 ++++++++++ 2 files changed, 10 insertions(+), 5 deletions(-) delete mode 100644 README create mode 100644 README.md diff --git a/README b/README deleted file mode 100644 index 452fc48..0000000 --- a/README +++ /dev/null @@ -1,5 +0,0 @@ -This repository contains a C++ implementation of the Google logging -module. Documentation for the implementation is in doc/. - -See INSTALL for (generic) installation instructions for C++: basically - ./autogen.sh && ./configure && make && make install diff --git a/README.md b/README.md new file mode 100644 index 0000000..d525f30 --- /dev/null +++ b/README.md @@ -0,0 +1,10 @@ +[![Build Status](https://img.shields.io/travis/google/glog/master.svg?label=Travis)](https://travis-ci.org/google/glog/builds) +[![Grunt status](https://img.shields.io/appveyor/ci/google/glog/master.svg?label=Appveyor)](https://ci.appveyor.com/project/google/glog/history) + +This repository contains a C++ implementation of the Google logging +module. Documentation for the implementation is in doc/. + +See INSTALL for (generic) installation instructions for C++: basically +```sh +./autogen.sh && ./configure && make && make install +```