mirror of
https://github.com/gflags/gflags.git
synced 2025-04-05 05:25:04 +00:00
add support for not showing internal gflags help
This commit is contained in:
parent
e171aa2d15
commit
d85289979b
5 changed files with 31 additions and 0 deletions
|
@ -145,6 +145,13 @@ file (TO_CMAKE_PATH "${CMAKE_INSTALL_PREFIX}" CMAKE_INSTALL_PREFIX)
|
|||
# ----------------------------------------------------------------------------
|
||||
# options
|
||||
|
||||
OPTION(GFLAGS_STRIP_INTERNAL_FLAG_HELP "Hide help from GFLAGS modules" OFF)
|
||||
IF(GFLAGS_STRIP_INTERNAL_FLAG_HELP)
|
||||
SET(STRIP_INTERNAL_FLAG_HELP 1)
|
||||
ELSE(GFLAGS_STRIP_INTERNAL_FLAG_HELP)
|
||||
SET(STRIP_INTERNAL_FLAG_HELP 0)
|
||||
ENDIF(GFLAGS_STRIP_INTERNAL_FLAG_HELP)
|
||||
|
||||
# maintain binary backwards compatibility with gflags library version <= 2.0,
|
||||
# but at the same time enable the use of the preferred new "gflags" namespace
|
||||
gflags_define (STRING NAMESPACE "Name(s) of library namespace (separate multiple options by semicolon)" "google;${PACKAGE_NAME}" "${PACKAGE_NAME}")
|
||||
|
|
|
@ -44,5 +44,6 @@
|
|||
// Define if your pthread library defines the type pthread_rwlock_t
|
||||
#cmakedefine HAVE_RWLOCK
|
||||
|
||||
#cmakedefine STRIP_INTERNAL_FLAG_HELP
|
||||
|
||||
#endif // GFLAGS_DEFINES_H_
|
||||
|
|
|
@ -87,7 +87,16 @@
|
|||
// other hand, hooks into CommandLineFlagParser. Other API functions
|
||||
// are, similarly, mostly hooks into the functionality described above.
|
||||
|
||||
#ifdef STRIP_INTERNAL_FLAG_HELP
|
||||
# define STRIP_FLAG_HELP 1
|
||||
#endif
|
||||
|
||||
#include "config.h"
|
||||
|
||||
#ifdef STRIP_INTERNAL_FLAG_HELP
|
||||
# define STRIP_FLAG_HELP 1
|
||||
#endif
|
||||
|
||||
#include "gflags/gflags.h"
|
||||
|
||||
#include <assert.h>
|
||||
|
|
|
@ -56,6 +56,11 @@
|
|||
#include <vector>
|
||||
|
||||
#include "config.h"
|
||||
|
||||
#ifdef STRIP_INTERNAL_FLAG_HELP
|
||||
# define STRIP_FLAG_HELP 1
|
||||
#endif
|
||||
|
||||
#include "gflags/gflags.h"
|
||||
#include "gflags/gflags_completions.h"
|
||||
#include "util.h"
|
||||
|
|
|
@ -56,6 +56,11 @@
|
|||
#include <vector>
|
||||
|
||||
#include "config.h"
|
||||
|
||||
#ifdef STRIP_INTERNAL_FLAG_HELP
|
||||
# define STRIP_FLAG_HELP 1
|
||||
#endif
|
||||
|
||||
#include "gflags/gflags.h"
|
||||
#include "gflags/gflags_completions.h"
|
||||
#include "util.h"
|
||||
|
@ -284,7 +289,11 @@ static void ShowUsageWithFlagsMatching(const char *argv0,
|
|||
fprintf(stdout, "\n\n"); // put blank lines between directories
|
||||
first_directory = false;
|
||||
}
|
||||
#ifdef STRIP_INTERNAL_FLAG_HELP
|
||||
fprintf(stdout, "\n\n");
|
||||
#else
|
||||
fprintf(stdout, "\n Flags from %s:\n", flag->filename.c_str());
|
||||
#endif // STRIP_INTERNAL_FLAG_HELP
|
||||
last_filename = flag->filename;
|
||||
}
|
||||
// Now print this flag
|
||||
|
|
Loading…
Add table
Reference in a new issue