blob: d6dd30a5e7768312a241f4b8e96214defad6f86a [file] [log] [blame]
Craig Silverstein573580d2007-03-22 00:18:13 +00001This repository contains both a C++ and a python implementation of the
2Google commandline flags module. Documentation for the C++
3implementation is in doc/. Documentation for the python
4implementation is at the top of gflags/flags.py.
5
6See INSTALL for (generic) installation instructions for C++: basically
7 ./configure && make && make install
8
9To install the python module, run
10 cd python; python ./setup.py install
11
12When you install the python library, you also get a helper
13application, gflags2man.py, installed into /usr/local/bin. You can
14run gflags2man.py to create an instant man page, with all the
15commandline flags and their docs, for any C++ or python program you've
16written using the gflags library.