mirror of
https://github.com/gflags/gflags.git
synced 2025-04-14 17:13:37 +00:00
* google-gflags: version 1.3 * PORTABILITY: can now build and run tests under MSVC (csilvers) * Remove the python gflags code, which is now its own package (tansell) * Clarify that "last flag wins" in the docs (csilvers) * Comment danger of using GetAllFlags in validators (wojtekm) * PORTABILITY: Some fixes necessary for c++0x (mboerger) * Makefile fix: $(srcdir) -> $(top_srcdir) in one place (csilvres) * INSTALL: autotools to autoconf v2.64 + automake v1.11 (csilvers) git-svn-id: https://gflags.googlecode.com/svn/trunk@35 6586e3c6-dcc4-952a-343f-ff74eb82781d
10 lines
457 B
Text
10 lines
457 B
Text
This repository contains a C++ of the Google commandline flags module.
|
|
Documentation for the C++ implementation is in doc/. The python version of
|
|
gflags is now shipped seperately as it is completely independent of this
|
|
module.
|
|
|
|
See INSTALL for (generic) installation instructions for C++: basically
|
|
./configure && make && make install
|
|
|
|
You can also compile this under Windows, if you want. The solution
|
|
file (for VC 7.1 and later) is in this directory.
|