Andreas Schuh
0c7012d647
fix: Build with MinGW version after Nov 2016
2018-11-09 16:38:57 +00:00
Andreas Schuh
b051bace27
fix: Build with _UNICODE support on Windows
2018-11-09 16:16:24 +00:00
Andreas Schuh
7e70988188
fix: PVS Studio warnings
2018-10-15 02:15:17 -07:00
Andreas Schuh
754d3329a6
fix: No extern template declaration for MSVC <12.0
2018-10-15 00:50:48 -07:00
Andreas Schuh
82456f220f
fix: Declare FlagRegisterer c’tor explicit template instanations as extern in header
2018-10-15 00:50:48 -07:00
Andreas Schuh
3e2e349307
fix: Declare FALGS_no##name variables as static
2018-10-14 00:16:13 -07:00
Andreas Schuh
c0b1add45f
fix: Import with GFLAGS_USE_TARGET_NAMESPACE=ON
2018-09-28 16:28:33 +01:00
Andreas Schuh
f1ea012a41
fix: Import with or without gflags:: namespace
2018-09-28 16:28:33 +01:00
Andreas Schuh
b0c4cd29e4
fix: Define both 'gflags' and 'gflags::gflags' alias targets
2018-09-28 16:28:33 +01:00
Andreas Schuh
04c8ce76e2
fix: Indentation, use spaces instead of real tabs
2018-09-28 16:00:51 +01:00
Andreas Schuh
d4a050d173
Merge pull request #247 from Mizux/master
2018-09-28 14:52:29 +01:00
wuchenghui
48677f930d
fix missing-field-initializers warnings on gcc
2018-09-28 14:50:39 +01:00
drillsar
6e536553ef
Fix V728 excessive check
2018-09-28 14:49:19 +01:00
kokerf
cad38c919c
Set postfixes for generated libraries based on buildtype
2018-09-28 13:23:32 +01:00
Matt Hargett
2c49763b73
Fix build on some clang variants
...
Some platforms' yval.h defines restrict as a macro when using clang, which causes this file to not compile.
2018-09-28 13:21:24 +01:00
Andreas Schuh
660603a3df
doc: Update documentation on how to use Bazel
2018-07-05 23:24:35 +01:00
Andreas Schuh
679df49798
Merge branch 'gh-pages' of github.com:gflags/gflags into gh-pages
2018-07-05 23:23:36 +01:00
Andreas Schuh
48cdc79332
doc: Use of Bazel bind discouraged
2018-07-05 23:23:21 +01:00
Sam Liu
518267d34f
Remove installation guide's recommendation to use Bazel's bind().
2018-07-05 23:17:28 +01:00
Corentin Le Molgat
f7228d77b5
Use CMake namespace gflags:: for export and alias target
...
Now use gflags::gflags instead of gflags
note: seems already in use in gRPC
cf https://github.com/grpc/grpc/blob/master/cmake/gflags.cmake#L30
2018-01-31 13:46:59 +01:00
Corentin Le Molgat
8b39845d6f
Remove uneeded enable_test()
...
cf https://gitlab.kitware.com/cmake/cmake/blob/master/Modules/CTest.cmake#L88
2018-01-31 13:40:42 +01:00
Corentin Le Molgat
9ab4d115cb
Add VERSION to project
2018-01-29 14:00:35 +01:00
Rob Earhart
e292e0452f
Use += for appends
2018-01-07 10:40:06 +00:00
Rob Earhart
6d1c363dde
Add Bazel-on-Windows support
2018-01-07 10:40:06 +00:00
Silver Chan
77592648e3
repair wrong namespace problem
...
repair wrong namespace problem
2017-11-03 12:21:22 +00:00
Sumit Gupta
23348465a0
Removed unused functions.
2017-10-08 10:52:46 +01:00
Yi Wang
60784b53e3
Remove using ::fLS::clstring;
2017-09-01 11:12:50 +02:00
Andreas Schuh
57ceb0ecc8
enh: Move CMake defines to separate header, unused by Bazel
...
This change avoids having to configure a private .h.in file during the Bazel build such that these files are not available to dependent projects in the GENDIR of the external gflags project.
2017-09-01 11:10:03 +02:00
Siddhartha Bagaria
7d36353579
Fix typo in BUILD
2017-08-29 14:51:00 +02:00
Andreas Schuh
aa2d0f7b4e
fix: Remove obsolete and unused CleanFileName code
2017-07-13 16:28:54 +01:00
Jason Juang
4663c80d3a
cmake: Add convenience uninstall target ( #221 )
...
Note: Leaves behind empty directories, no real uninstaller. Just for convenience of some.
2017-07-11 22:22:41 +01:00
Andreas Schuh
46f73f88b1
Release v2.2.1
2017-07-11 18:30:34 +01:00
Andreas Schuh
66d4386d0e
enh: AppVeyor builds with different toolchains (copied from gtest project)
2017-07-11 17:47:32 +01:00
Andreas Schuh
6348ea9d7e
fix: Check HAVE_STDINT_H or HAVE_INTTYPES_H for older MSVC versions
2017-07-11 17:47:32 +01:00
Andreas Schuh
3d5bc48dc8
git: Ignore symbolic links created by Bazel build tool
2017-07-11 15:32:24 +01:00
Andreas Schuh
74603f5ed3
fix: Static code analyzer error regarding strncmp with empty kRootDir string
2017-07-11 14:47:40 +01:00
Ben Vanik
4a694e8736
Use inttypes.h on VC++ 2013 and up
...
Warnings will spit out on newer compilers due to PRI* being redefined.
Tested with VC++ 2015 and 2017. [Blog post](https://blogs.msdn.microsoft.com/vcblog/2013/07/19/c99-library-support-in-visual-studio-2013/ ) describing the defines being added in 2013.
2017-05-16 11:37:59 +01:00
randomguy3
21c7bcd895
Fix CMake macro special variable usage ( #216 )
...
The argument-related variables in a macro body are not real variables,
but special substitutions. They cannot be directly referred to by name,
only expanded.
2017-05-16 11:35:11 +01:00
Mmanu Chaturvedi
95ffb27c9c
Fix static initialization order fiasco caused by global registry lock ( #215 )
2017-05-12 22:11:28 +01:00
Arkady Shapkin
80ebb424a5
Install dll's to correct path ( #213 )
2017-05-11 13:02:21 +01:00
Arkady Shapkin
652651b421
Fix statically linked gflags library with MSVC
...
Fix #211
2017-05-06 01:47:54 +01:00
Dan Minor
9314597d4b
Mark single argument constructors in mutex.h as explicit.
2017-03-29 13:01:34 +01:00
Razvan Musaloiu-E
48f409438b
Removed the unused link to #varz
2017-01-06 11:53:05 +00:00
Geoffrey Lalonde
30dbc81fb5
Changed include directory in bazel build
2017-01-06 11:46:43 +00:00
Andreas Schuh
8935ef4526
enh: Link to online documentation in README
2016-11-29 10:33:53 +00:00
Andreas Schuh
20858a49e0
fix: Enable language C for older CMake versions when needed ( #196 )
...
* fix: Enable language C for older CMake versions when needed
* fix: Don’t care about buggy Android toolchain
2016-11-26 21:55:33 +00:00
Andreas Schuh
ac6834e979
fix: Remove unused program_name variable
2016-11-26 21:25:02 +00:00
Andreas Schuh
22ed2ce6c8
fix: Include utils by file instead of CMAKE_MODULE_PATH search
2016-11-26 16:01:46 +00:00
Andreas Schuh
f8a0efe03a
Release v2.2.0
2016-11-25 18:54:37 +00:00
Andreas Schuh
2f336a2a87
doc: //external:gflags_nothreads Bazel target
2016-11-25 18:54:37 +00:00