From 957aa3aa622d48839c99a51eb8f8b1f55d16b06b Mon Sep 17 00:00:00 2001 From: Andreas Schuh Date: Tue, 24 Mar 2015 13:13:50 +0000 Subject: [PATCH] doc: Add download and issue report instructions to project page --- index.html | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) diff --git a/index.html b/index.html index 3a66713..25b7f59 100644 --- a/index.html +++ b/index.html @@ -38,6 +38,7 @@
Table of contents
Introduction
+
Download and Installation
Finding and Linking to gflags using CMake
DEFINE: Defining Flags In Program
Accessing the Flag
@@ -49,6 +50,8 @@
Changing the Default Flag Value
Special Flags
The API
+
Miscellaneous Notes
+
Issues and Feature Requests

@@ -91,6 +94,15 @@ library. It's a C++ library, so examples are in C++. However, there is a Python port with the same functionality, and this discussion translates directly to Python.

+

Download and Installation

+ +

The gflags library can be downloaded from GitHub. +You can clone the project using the command:

+
+   git clone git@github.com:schuhschuh/gflags.git
+
+

Build and installation instructions are provided in the INSTALL file.

+

Finding and Linking to gflags using CMake

Using gflags within a project which uses CMake for its build system is easy. Therefore, simply add the following CMake code to your CMakeLists.txt file. @@ -544,6 +556,10 @@ methods such as gflags::SetUsageMessage() and reduce the size of the resulting binary somewhat, and may also be useful for security reasons.

+

Issues and Feature Requests

+ +

Please report any issues or ideas for additional features on GitHub. +We would also like to encourage pull requests for bug fixes and implementations of new features.