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:
Find a file
2013-11-27 18:04:40 +01:00
doc Wed Jan 25 15:09:14 2012 Google Inc. <google-gflags@googlegroups.com> 2012-01-25 23:59:40 +00:00
m4 * Update acx_pthread.m4 for nostdlib (liujisi) 2011-03-02 08:05:17 +00:00
packages Fixed a typo in the email address. 2012-02-02 22:49:44 +00:00
src Add DEFINE_validator macro for convenient registration of a flag validator. 2013-04-20 18:35:34 +00:00
vsprojects Added configuration options for x64 to vs2010 solution/project file 2013-11-22 17:32:40 +01:00
.gitignore Added Git ignore file to prevent build files being seen as changed files 2013-11-22 17:31:07 +01:00
aclocal.m4 Update to automake 1.10.1 (from 1.9), and downdate to autoconf 2.62 2011-07-29 03:48:59 +00:00
AUTHORS Wed Jan 25 15:09:14 2012 Google Inc. <google-gflags@googlegroups.com> 2012-01-25 23:59:40 +00:00
autogen.sh Update to automake 1.10.1 (from 1.9), and downdate to autoconf 2.62 2011-07-29 03:48:59 +00:00
ChangeLog Wed Jan 25 15:09:14 2012 Google Inc. <google-gflags@googlegroups.com> 2012-01-25 23:59:40 +00:00
config.guess Update to automake 1.10.1 (from 1.9), and downdate to autoconf 2.62 2011-07-29 03:48:59 +00:00
config.sub Update to automake 1.10.1 (from 1.9), and downdate to autoconf 2.62 2011-07-29 03:48:59 +00:00
configure Wed Jan 25 15:09:14 2012 Google Inc. <google-gflags@googlegroups.com> 2012-01-25 23:59:40 +00:00
configure.ac Wed Jan 25 15:09:14 2012 Google Inc. <google-gflags@googlegroups.com> 2012-01-25 23:59:40 +00:00
COPYING gflags 0.1 2007-03-22 00:15:41 +00:00
depcomp Update to automake 1.10.1 (from 1.9), and downdate to autoconf 2.62 2011-07-29 03:48:59 +00:00
gflags-vs2003.sln Fix deprecation warnings of VC++ regarding strdup and unlink. Add solution files for VS 2010 and VS 2012. 2012-11-20 14:48:22 +00:00
gflags-vs2010.sln Added configuration options for x64 to vs2010 solution/project file 2013-11-22 17:32:40 +01:00
gflags-vs2012.sln Renamed projects in VS2012 solution file to match the filename 2013-11-27 18:04:40 +01:00
INSTALL Update to automake 1.10.1 (from 1.9), and downdate to autoconf 2.62 2011-07-29 03:48:59 +00:00
install-sh Update to automake 1.10.1 (from 1.9), and downdate to autoconf 2.62 2011-07-29 03:48:59 +00:00
ltmain.sh * Use our own string typedef so macro is never confused (csilvers) 2010-11-16 23:21:00 +00:00
Makefile.am Wed Jan 25 15:09:14 2012 Google Inc. <google-gflags@googlegroups.com> 2012-01-25 23:59:40 +00:00
Makefile.in Wed Jan 25 15:09:14 2012 Google Inc. <google-gflags@googlegroups.com> 2012-01-25 23:59:40 +00:00
missing Update to automake 1.10.1 (from 1.9), and downdate to autoconf 2.62 2011-07-29 03:48:59 +00:00
NEWS Update NEWS: Git repository hosted on GitHub. 2013-04-20 22:49:37 +00:00
README * Reduce .o size by decomposing switches (jyrki) 2010-09-16 18:53:42 +00:00
README_windows.txt * Split up flag declares into its own file (jyrki) 2011-04-21 19:22:43 +00:00

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

See README_windows.txt for instructions on using under windows.