Andreas Schuh
52e94563eb
test: Trigger workflow upon push on master ( #370 )
Build and Run Tests / Test on ubuntu-latest (push) Failing after 1s
2025-03-31 23:49:02 +01:00
Andreas Schuh
c1f63a168d
doc: Replace CI badges with GitHub Action status ( #369 )
2025-03-31 23:39:15 +01:00
Rui Chen
70c01a642f
build: support cmake 4.0 ( #367 )
...
Signed-off-by: Rui Chen <rui@chenrui.dev>
2025-03-31 23:35:49 +01:00
Andreas Schuh
b364def945
test: Add GitHub Action to run CTest ( #368 )
...
* test: Remove Travis CI and Appveyor config files
* test: Add GitHub Action to run CTest on Ubuntu
2025-03-31 23:33:08 +01:00
JaiXJM-BB
58cf1ef6d0
cmake: Support BlackBerry QNX ( #364 )
2024-12-13 23:00:05 +00:00
Izzie Corley
3c4399ba46
Fix spelling in ChangeLog.txt ( #362 )
2024-10-11 13:35:38 +01:00
Lan Zongwei
03a4842c9c
cmake: export gflags_nothreads_static
into one export set by subproject default
2024-06-09 22:38:04 +01:00
Vertexwahn
82793e3f38
Fix spelling
2024-06-09 22:08:02 +01:00
Alexander Borsuk
c196ce6baa
Fixed macro redifinition warning for Unity builds
...
Signed-off-by: Alexander Borsuk <me@alex.bio>
2024-06-09 22:07:48 +01:00
Vertexwahn
3df39f3a03
Add MODULE.bazel file to support Bzlmod
2024-06-09 22:04:34 +01:00
Biswapriyo Nath
a738fdf933
cmake: Do not add suffix with static library names in mingw
...
In mingw environment, this fixes static linking using pkgconfig file.
2022-07-27 22:06:09 +01:00
Joseph Shanak
b7fd838331
Update docs. Add id to --flagfile so it can be jumped to
2022-07-27 22:05:07 +01:00
Biswapriyo Nath
986e8eed00
cmake: Install pkgconfig file in mingw
2022-01-08 23:24:44 +00:00
Michael Chinen
9ca7e9ee7a
Android linking fix ( #321 )
2022-01-08 23:02:39 +00:00
HongboLiu
4ace06d024
make bazel use same namespace with cmake
2022-01-08 22:40:36 +00:00
Changqing Li
827c769e5f
switch shebang to python3
...
python2 is EOL, swith shebang to python3
Signed-off-by: Changqing Li <changqing.li@windriver.com>
2020-10-30 10:16:12 +00:00
Zachary
5d5a6c5501
Include string.h for strchr and strcmp.
...
This fixes a continuous build
(https://travis-ci.org/github/google/perf_data_converter/jobs/714589290 )
running on Ubuntu 16.04 using gcc-4.8.
2020-10-11 01:37:59 +01:00
panzhongxian
a386bd0f20
Update index.html dependency with Bazel section.
2020-09-23 11:26:36 +01:00
panzhongxian
cb68d9eeb8
Update index.html dependency with Bazel section.
2020-09-23 09:05:28 +01:00
Andreas Schuh
ae2fae5645
Merge branch 'remove-doc-submodule'
2020-09-18 17:55:31 +01:00
Andreas Schuh
1c86423887
Add doc/README.md with command to update gh-pages
2020-09-18 17:50:41 +01:00
Andreas Schuh
8843f88b69
Add 'doc/' from commit '8411df715cf522606e3b1aca386ddfc0b63d34b4'
...
git-subtree-dir: doc
git-subtree-mainline: 4405871443
git-subtree-split: 8411df715c
2020-09-18 17:44:46 +01:00
Andreas Schuh
4405871443
Remove doc/ submodule self-reference
2020-09-18 17:44:26 +01:00
Andrew Gasparovic
f7388c6655
Simplify found_question_marks tests
2020-06-16 22:11:03 +01:00
Andrew Gasparovic
84968c6bb2
Remove fallthrough switch case
...
GCC gives an implicit-fallthrough warning (included in -Wextra). C++17 has the [[fallthrough]] attribute, and GCC7+ has __attribute__ ((fallthrough)), but I didn't want to require either so I refactored the switch into if statements.
2020-06-16 22:11:03 +01:00
Tom Lundell
1137acc9e0
Remove msys dependency for Windows.
...
Bazel genrules require a msys shell to execute
shell commands. Replace the genrules with a
simple C++ regex replacement binary.
Fixes #303 .
2020-06-13 03:44:00 +01:00
Andrew Gasparovic
ef8e134d48
Remove unreachable code
...
INFO: From Compiling external/com_github_gflags_gflags/src/gflags_completions.cc:
external/com_github_gflags_gflags/src/gflags_completions.cc:459:16: warning: code will never be executed [-Wunreachable-code]
DVLOG(3) << "Result: most-common match";
^~
1 warning generated.
2020-06-13 00:41:51 +01:00
Ilya Lavrenov
addd749114
Set POCICY 0063 to new
2020-03-18 12:31:18 +00:00
Trevor Hickey
2e227c3daa
remove attribute where it does not apply
...
```
gflags.h(226): warning: attribute "visibility" does not apply here
```
The visibility attribute applies to symbols like functions and variables. A definition of an enumeration type that doesn't contain a variable name doesn't create any symbols.
2020-01-16 00:49:58 +00:00
Jacky Wu
d9b184bd00
Avoid no-match message in case STRIP_FLAG_HELP been set
...
If the workaround in issue #43 is used along with the define of
STRIP_FLAG_HELP to 1, there would be a wrong "No modules matched"
message been print at end of the usage message.
That's because we continue the loop if we see strip flag help value and
never set the `found_match` flag to true even if we found a match.
By moving the set statement above the continue, we can avoid this wrong
message.
2019-11-13 14:07:30 +00:00
Rosen Penev
6c8f50b567
[clang-tidy] Remove redundant initialization of strings
...
Found with readability-redundant-string-init
Signed-off-by: Rosen Penev <rosenp@gmail.com>
2019-11-01 09:26:51 +00:00
Rosen Penev
6d224d34b6
[clang-tidy] Replace deprecated C headers
...
Deprecated with C++14.
Found with modernize-deprecated-headers
Signed-off-by: Rosen Penev <rosenp@gmail.com>
2019-11-01 09:26:51 +00:00
Mizux
0b7f8db2c6
Fix check of targets in package config when GFLAGS_USE_TARGET_NAMESPACE
2019-09-29 15:31:36 +01:00
Andreas Schuh
f40e43a628
Change order of sections in INSTALL file, mention Homebrew
2019-09-29 14:59:09 +01:00
grdowns
57c5913fb8
Add vcpkg installation instructions
2019-09-29 14:50:43 +01:00
Rosen Penev
2cac878761
package.pc.in: bin and libdir to exec_prefix
...
More consistent with other pkgconfig files.
No functional difference.
2019-09-17 19:13:49 +01:00
Andreas Schuh
28f50e0fed
fix: Install pkgconfig file only when INSTALL_HEADERS option is ON
2019-01-25 17:58:59 +00:00
Andreas Schuh
1005485222
fixup: Keep CMake coding style with whitespace after command name
2018-12-05 11:11:48 +00:00
Andreas Schuh
be65295633
fix: GFLAGS_* variables take precedence in gflags_define
2018-12-05 11:11:48 +00:00
Andreas Schuh
524b83d026
Merge pull request #276 from Rastaban/master
...
Add missing @ to cmake-config.in
2018-12-01 00:20:51 +00:00
Phil Christensen
34819405ab
Merge pull request #1 from Rastaban/Rastaban-patch-1
...
Add missing @ to cmake file
2018-11-30 15:50:14 -08:00
Phil Christensen
00fcadd9b8
Add missing @ to cmake file
2018-11-30 15:48:42 -08:00
Andreas Schuh
498cfa8b13
doc: Minor English language fix in release notes
2018-11-11 21:43:32 +00:00
Andreas Schuh
e171aa2d15
Release v2.2.2
2018-11-11 21:21:00 +00:00
Andreas Schuh
3d2a101c9e
doc: Update README for release v2.2.2
2018-11-11 21:17:01 +00:00
Andreas Schuh
af502c8176
doc: Update ChangeLog for release v2.2.2
2018-11-11 21:09:58 +00:00
Andreas Schuh
0f439e8407
cmake: Increment project version to 2.2.2
2018-11-11 21:09:38 +00:00
Andreas Schuh
83fecd3ed0
doc: Updated CMake and Bazel examples
2018-11-11 20:45:00 +00:00
Andreas Schuh
8411df715c
Update CMake and Bazel examples
2018-11-11 20:44:23 +00:00
Andreas Schuh
4c0bbc0604
fix: Use 'default' visibility for GCC
2018-11-11 20:35:02 +00:00