Home
last modified time | relevance | path

Searched refs:gflags (Results 1 – 25 of 86) sorted by relevance

1234

/external/gflags/
DREADME.md1 [![Build Status](https://travis-ci.org/gflags/gflags.svg?branch=master)](https://travis-ci.org/gfla…
2 …6ysraus74/branch/master?svg=true)](https://ci.appveyor.com/project/schuhschuh/gflags/branch/master)
4 The documentation of the gflags library is available online at https://gflags.github.io/gflags/.
10 I've just released gflags 2.2.2.
15 name "gflags::" following a more recent (unwritten) CMake convention. The unprefixed target names a…
24 I've just released gflags 2.2.1.
35 I've finally released gflags 2.2.0.
37 This release adds support for use of the gflags library as external dependency
54 I've just released gflags 2.1.2.
59 primary namespace while symbols are imported into the new "gflags" namespace.
[all …]
DMETADATA1 name: "gflags"
2gflags package contains a C++ library that implements commandline flags processing. It includes bu…
6 value: "https://github.com/gflags/gflags.git"
10 value: "https://github.com/gflags/gflags.git"
DChangeLog.txt3 - gflags: version 2.2.2
15 Merged 247: CMake "project" VERSION; no enable_testing(); "gflags::" import target prefix.
17 Merged 239: Use GFLAGS_NAMESPACE instead of "gflags" in test executable.
25 - gflags: version 2.2.1
33 - Merged 212: Fix statically linked gflags library with MSVC
42 - gflags: version 2.2.0
47 - Closed issue 120: Configure and install gflags.pc file for pkg-config users
55 - Fixed issue 174: Missing gflags-targets.cmake file after installation
56 - Fixed issue 186: Error linking to gflags IMPLIB with MSVC using CMake
57 - Closed issue 106: Add example project to test use of gflags library
[all …]
DINSTALL.md4 No official binary distribution packages are provided by the gflags developers.
8 For example on Debian/Ubuntu Linux, gflags can be installed using the
17 The build system of gflags is since version 2.1 based on [CMake](http://cmake.org).
32 $ tar xzf gflags-$version-source.tar.gz
33 $ cd gflags-$version
46 In the following, only gflags-specific CMake settings available to
54 … | Installation directory, e.g., "/usr/local" on Unix and "C:\Program Files\gflags" on Windows.
61 BUILD_gflags_LIBS | Request build of multi-threaded gflags libraries (if threading librar…
62 BUILD_gflags_nothreads_LIBS | Request build of single-threaded gflags libraries.
63gflags library. Note that the public source header files are installed in a subdirectory named aft…
[all …]
DCMakeLists.txt1 ## CMake configuration file of gflags project
3 ## This CMakeLists.txt defines some gflags specific configuration variables
6 ## the cmake command or in a super-project which includes the gflags source
8 ## gflags source directory via CMake's "add_subdirectory" command. Only when
13 ## file, i.e., the top-level directory of the gflags project source tree.
17 ## installation of the gflags files. The "gflags::gflags" target is in this case an ALIAS
19 ## depend on the gflags library should link to the "gflags::gflags" library target.
21 ## Example CMakeLists.txt of user project which requires separate gflags installation:
26 ## find_package(gflags REQUIRED)
29 ## target_link_libraries(foo gflags::gflags)
[all …]
D.gitignore12 /include/gflags/config.h
13 /include/gflags/gflags_completions.h
14 /include/gflags/gflags_declare.h
15 /include/gflags/gflags.h
23 /bazel-gflags
DBUILD1 # Bazel (http://bazel.io/) BUILD file for gflags.
3 # See INSTALL.md for instructions for adding gflags to a Bazel workspace.
14 load(":bazel/gflags.bzl", "gflags_sources", "gflags_library")
16 (hdrs, srcs) = gflags_sources(namespace=["gflags", "google"])
/external/tflite-support/third_party/gflags/
Dworkspace.bzl9 strip_prefix = "gflags-2.2.1",
11 "http://mirror.tensorflow.org/github.com/gflags/gflags/archive/v2.2.1.tar.gz",
12 "https://github.com/gflags/gflags/archive/v2.2.1.tar.gz",
14 patches = ["@//third_party/gflags:fix_android_pthread_link.patch"],
Dfix_android_pthread_link.patch14 load(":bazel/gflags.bzl", "gflags_sources", "gflags_library")
15 (hdrs, srcs) = gflags_sources(namespace=["gflags", "google"])
17 diff --git a/bazel/gflags.bzl b/bazel/gflags.bzl
19 --- a/bazel/gflags.bzl
20 +++ b/bazel/gflags.bzl
/external/grpc-grpc/cmake/
Dgflags.cmake17 set(GFLAGS_ROOT_DIR ${CMAKE_CURRENT_SOURCE_DIR}/third_party/gflags)
20 add_subdirectory(${GFLAGS_ROOT_DIR} third_party/gflags)
23 set(_gRPC_GFLAGS_INCLUDE_DIR "${CMAKE_CURRENT_BINARY_DIR}/third_party/gflags/include")
29 # Use "CONFIG" as there is no built-in cmake module for gflags.
30 find_package(gflags REQUIRED CONFIG)
31 if(TARGET gflags)
32 set(_gRPC_GFLAGS_LIBRARIES gflags)
35 set(_gRPC_FIND_GFLAGS "if(NOT gflags_FOUND)\n find_package(gflags CONFIG)\nendif()")
/external/gflags/bazel/
Dgflags.bzl3 def gflags_sources(namespace=["google", "gflags"]):
29 srcs = ["src/gflags.h.in"],
30 outs = ["gflags.h"],
33 …"gsub(/@INCLUDE_GFLAGS_NS_H@/, \"" + '\n'.join(["#include \\\"gflags/{}\\\"".format(hdr) for hdr i…
46 "src/gflags.cc",
61 # Add native rule to build gflags library
63 name = "gflags"
102 include_prefix = 'gflags'
/external/grpc-grpc/templates/tools/dockerfile/test/cxx_alpine_x64/
DDockerfile.template50 # Install gflags
51 RUN git clone https://github.com/gflags/gflags.git && cd gflags && git checkout v2.2.0
52 RUN cd gflags && cmake . && make && make install
53 RUN ln -s /usr/local/include/gflags /usr/include/gflags
/external/grpc-grpc/tools/dockerfile/test/cxx_alpine_x64/
DDockerfile48 # Install gflags
49 RUN git clone https://github.com/gflags/gflags.git && cd gflags && git checkout v2.2.0
50 RUN cd gflags && cmake . && make && make install
51 RUN ln -s /usr/local/include/gflags /usr/include/gflags
/external/gflags/test/config/
DCMakeLists.txt1 ## gflags package configuration tests
7 find_package (gflags REQUIRED)
10 target_link_libraries (foo gflags::gflags)
Dmain.cc14 gflags::SetUsageMessage("Test CMake configuration of gflags library (gflags-config.cmake)"); in main()
15 gflags::SetVersionString("0.1"); in main()
16 gflags::ParseCommandLineFlags(&argc, &argv, true); in main()
18 gflags::ShutDownCommandLineFlags(); in main()
/external/libyuv/files/third_party/gflags/gen/win/include/private/
Dconfig.h53 #define PACKAGE gflags
56 #define PACKAGE_NAME gflags
59 #define PACKAGE_STRING gflags 2.2.0
62 #define PACKAGE_TARNAME gflags-2.2.0
/external/libyuv/files/third_party/gflags/gen/posix/include/private/
Dconfig.h53 #define PACKAGE gflags
56 #define PACKAGE_NAME gflags
59 #define PACKAGE_STRING gflags 2.2.0
62 #define PACKAGE_TARNAME gflags-2.2.0
/external/libyuv/files/third_party/gflags/
DREADME.libyuv1 URL: https://github.com/gflags/gflags
7 The gflags package contains a library that implements commandline
21 When rolling gflags to a newer version, it's a good idea to check if
24 gflags. Then diff the generated files with the ones below gen/.
27 have to checkout gflags on the other platforms as well and run
Dgflags.gyp10 # This is a copy of WebRTC's gflags.gyp.
14 'gflags_root': '<(DEPTH)/third_party/gflags',
25 'target_name': 'gflags',
28 '<(gflags_gen_arch_root)/include/gflags', # For configured files.
52 'src/src/gflags.cc',
/external/gflags/test/nc/
DCMakeLists.txt1 ## gflags negative compilation tests
12 find_package (gflags REQUIRED)
16 target_link_libraries(gflags_${TEST_NAME} gflags)
/external/libyuv/files/tools_libyuv/autoroller/unittests/testdata/
DDEPS18 'src/third_party/gflags/src':
19 …Var('chromium_git') + '/external/github.com/gflags/gflags@03bebcb065c83beff83d50ae025a55a4bf94dfca…
/external/shflags/
DREADME.md3 shFlags is a port of the Google [gflags](http://gflags.github.io/gflags/) library for Unix shell. T…
/external/gflags/test/
DCMakeLists.txt1 ## gflags tests
17 include_directories ("${gflags_BINARY_DIR}/include/gflags")
97 add_gflags_test(helpon=gflags 1 "${SLASH}gflags.cc:" "${SLASH}gflags_unittest.cc:" gflags_unittest…
99 …d_gflags_test(helpon_gflags 1 "${SLASH}gflags.cc:" "${SLASH}gflags_unittest.cc:" gflags_unittest …
101 add_gflags_test(helpon=gflags_unittest 1 "${SLASH}gflags_unittest.cc:" "${SLASH}gflags.cc:" gflags…
105 add_gflags_test(helpmatch=unittest 1 "${SLASH}gflags_unittest.cc:" "${SLASH}gflags.cc:" gflags_un…
168 add_test(NAME gflags_declare COMMAND gflags_declare_test --message "Hello gflags!")
169 set_tests_properties(gflags_declare PROPERTIES PASS_REGULAR_EXPRESSION "Hello gflags!")
/external/grpc-grpc/test/cpp/util/
Dtest_config_cc.cc25 namespace gflags {} namespace
27 using namespace gflags;
/external/grpc-grpc/test/cpp/codegen/
Dgolden_file_test.cc28 namespace gflags {} namespace
30 using namespace gflags;

1234