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