mirror of
https://github.com/gflags/gflags.git
synced 2025-04-05 13:35:04 +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:
The "SONAME_FLAG" was introduced in CMake 2.8.9, while the current CMake scripts require 2.8.4 (first line of CMakeLists.txt). Increasing the required CMake version will block building in less recent OSes (e.g., for Ubuntu 12.04 LTS, the latest version from the official repositories is currently 2.8.7). The more compatible solution will be to use the old variable name, i.e. the one which was used before CMake was patched. NB: this issue is triggered upon specifying -DBUILD_SHARED_LIBS=ON. Related bug report: http://public.kitware.com/Bug/view.php?id=13884 Commit which implemented this new variable: http://cmake.org/gitweb?p=cmake.git;a=commitdiff;h=e1409ac5 |
||
---|---|---|
cmake | ||
doc | ||
src | ||
test | ||
.gitattributes | ||
.gitignore | ||
AUTHORS.txt | ||
ChangeLog.txt | ||
CMakeLists.txt | ||
COPYING.txt | ||
INSTALL.txt | ||
NEWS.txt | ||
README.txt |
This package contains a library that implements commandline flags processing. As such it's a replacement for getopt(). It has increased flexibility, including built-in support for C++ types like string, and the ability to define flags in the source file in which they're used.