From 78c66b37266707a3cf2904c3891b08cddae8d83e Mon Sep 17 00:00:00 2001
From: Andreas Schuh
git clone https://github.com/gflags/gflags.git-
Build and installation instructions are provided in the INSTALL file.
+Build and installation instructions are provided in the +INSTALL file. +The installation of the gflags package includes configuration files for popular build systems +such as pkg-config, +CMake, and Bazel.
-Using gflags within a project which uses CMake for its build system is easy. You can either require an external installation of the gflags package and find it using CMake's find_package @@ -141,6 +147,38 @@ imported gflags library target:
target_link_libraries(foo gflags) +To use gflags within a project which uses Bazel as build tool,
+add the following lines to your WORKSPACE
file
+(see also Bazel documentation of git_repository):
+
+
+git_repository( + name = "com_github_gflags_gflags", + commit = "<INSERT COMMIT SHA HERE>", + remote = "https://github.com/gflags/gflags.git", +) + +bind( + name = "gflags", + actual = "@com_github_gflags_gflags//:gflags", +) ++ +
You can then add //external:gflags
to the deps
section of a cc_binary
+or cc_library
rule, and #include "gflags/gflags.h"
to include it in your source code.
For example, see the following BUILD
rule of the gflags/example project:
+cc_binary( + name = "foo", + srcs = ["main.cc"], + deps = ["//external:gflags"], +) ++
Defining a flag is easy: just use the appropriate macro for the @@ -284,17 +322,20 @@ static bool ValidatePort(const char* flagname, int32 value) { return false; } DEFINE_int32(port, 0, "What port to listen on"); -static const bool port_dummy = RegisterFlagValidator(&FLAGS_port, &ValidatePort); +DEFINE_validator(port, &ValidatePort);
By doing the registration at global initialization time (right
-after the DEFINE), we ensure that the registration happens before
+after the DEFINE_int32), we ensure that the registration happens before
the commandline is parsed at the beginning of main()
.
RegisterFlagValidator()
returns true if the
-registration is successful. It return false if the registration fails
+
The above used DEFINE_validator
macro calls the
+RegisterFlagValidator()
function which returns true if the
+registration is successful. It returns false if the registration fails
because a) the first argument does not refer to a commandline flag, or
-b) a different validator has already been registered for this flag.
<flag>_validator_registered
.