mirror of
https://github.com/gflags/gflags.git
synced 2025-04-06 14:05:03 +00:00
The gflags package contains a C++ library that implements commandline flags processing. It includes built-in support for standard types such as string and the ability to define flags in the source file in which they are used. Online documentation available at:
* google-gflags: version 0.5 * Include all m4 macros in the distribution (csilvers) * Python: Fix broken data_files field in setup.py (sidlon) * Python: better string serliaizing and unparsing (abo, csimmons) * Fix checks for NaN and inf to work with Mac OS X (csilvers) git-svn-id: https://gflags.googlecode.com/svn/trunk@15 6586e3c6-dcc4-952a-343f-ff74eb82781d |
||
---|---|---|
doc | ||
m4 | ||
packages | ||
python | ||
src | ||
aclocal.m4 | ||
AUTHORS | ||
autogen.sh | ||
ChangeLog | ||
compile | ||
config.guess | ||
config.sub | ||
configure | ||
configure.ac | ||
COPYING | ||
depcomp | ||
INSTALL | ||
install-sh | ||
ltmain.sh | ||
Makefile.am | ||
Makefile.in | ||
missing | ||
mkinstalldirs | ||
NEWS | ||
README |
This repository contains both a C++ and a python implementation of the Google commandline flags module. Documentation for the C++ implementation is in doc/. Documentation for the python implementation is at the top of gflags/flags.py. See INSTALL for (generic) installation instructions for C++: basically ./configure && make && make install To install the python module, run cd python; python ./setup.py install When you install the python library, you also get a helper application, gflags2man.py, installed into /usr/local/bin. You can run gflags2man.py to create an instant man page, with all the commandline flags and their docs, for any C++ or python program you've written using the gflags library.