mirror of
https://github.com/gflags/gflags.git
synced 2025-04-05 05:25:04 +00:00
Merge cd344d6eca
into c94a60e2f6
This commit is contained in:
commit
5b5448f2c6
2 changed files with 4 additions and 7 deletions
3
BUILD
3
BUILD
|
@ -37,9 +37,6 @@ cc_library(
|
|||
"-DHAVE_RWLOCK",
|
||||
"-DGFLAGS_INTTYPES_FORMAT_C99",
|
||||
],
|
||||
includes = [
|
||||
"include",
|
||||
],
|
||||
visibility = ["//visibility:public"],
|
||||
)
|
||||
|
||||
|
|
|
@ -33,12 +33,12 @@ the name of this package and the obtained version of the software.
|
|||
$ cd gflags-$version
|
||||
$ mkdir build && cd build
|
||||
$ ccmake ..
|
||||
|
||||
|
||||
- Press 'c' to configure the build system and 'e' to ignore warnings.
|
||||
- Set CMAKE_INSTALL_PREFIX and other CMake variables and options.
|
||||
- Continue pressing 'c' until the option 'g' is available.
|
||||
- Then press 'g' to generate the configuration files for GNU Make.
|
||||
|
||||
|
||||
$ make
|
||||
$ make test (optional)
|
||||
$ make install (optional)
|
||||
|
@ -73,14 +73,14 @@ To use gflags in a Bazel project, map it in as an external dependency by editing
|
|||
your WORKSPACE file:
|
||||
|
||||
git_repository(
|
||||
name = "gflags_git",
|
||||
name = "com_googlesource_code_gflags",
|
||||
commit = "", # Use the current HEAD commit
|
||||
remote = "https://github.com/gflags/gflags.git",
|
||||
)
|
||||
|
||||
bind(
|
||||
name = "gflags",
|
||||
actual = "@gflags_git//:gflags",
|
||||
actual = "@com_googlesource_code_gflags//:gflags",
|
||||
)
|
||||
|
||||
You can then add `//external:gflags` to the `deps` section of a `cc_binary` or
|
||||
|
|
Loading…
Add table
Reference in a new issue