diff --git a/index.html b/index.html index 3a66713..25b7f59 100644 --- a/index.html +++ b/index.html @@ -38,6 +38,7 @@
@@ -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. +
- 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
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.
+ 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.
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.