C++ implementation of the Google logging module
Go to file
2021-02-20 17:34:31 +01:00
.bazelci add windows target to bazel CI 2019-11-20 14:21:54 +01:00
bazel Fix the symlink creation bug if using bazel 2021-02-20 17:34:31 +01:00
cmake removed autoconf support 2020-10-02 20:32:41 +02:00
src Merge pull request #400 from guoyuhong/fixWebmailer 2021-02-13 11:57:07 +01:00
toolchains ci: add clang-cxx17 toolchain 2018-12-13 07:49:59 +01:00
.gitignore added cmake package config unit test 2019-11-10 15:46:47 +01:00
.travis.ubuntu.sh ci: add appveyor and travis config 2018-10-15 13:34:52 +02:00
.travis.yml ci: add clang-cxx17 toolchain 2018-12-13 07:49:59 +01:00
appveyor.yml ci: add appveyor and travis config 2018-10-15 13:34:52 +02:00
AUTHORS Add support for automatic removal of old logs (#432) 2019-11-01 12:20:11 +01:00
BUILD Hide certain header files from the cc_library(). 2017-12-14 00:58:33 -08:00
ChangeLog Update ChangeLog to record release dates at least 2019-01-23 12:24:15 +09:00
CMakeLists.txt bump version 2021-02-13 12:23:32 +01:00
CONTRIBUTORS Add target existence checks to Unwind find module (#518) 2020-01-17 09:17:28 +01:00
COPYING A bug fix for Windows: Use GetSystemTimeAsFileTime instead of GetSystemTime. SYSTEMTIME's mSecond is not a unix time but like tm.tm_sec. 2009-04-09 07:49:44 +00:00
Dockerfile.ubuntu.template ci: add appveyor and travis config 2018-10-15 13:34:52 +02:00
glog-config.cmake.in install unwind find module alongside glog 2019-11-10 11:09:18 +01:00
glog-modules.cmake.in install unwind find module alongside glog 2019-11-10 11:09:18 +01:00
libglog.pc.in Generation of pkg-config metadata file. 2009-04-10 05:49:58 +00:00
README.rst bump version 2021-02-13 12:23:32 +01:00
README.windows Update Windows readme for CMake 2017-07-26 11:35:04 -07:00
WORKSPACE Use gflags 2.2.2 in Bazel build 2018-11-19 09:57:51 +01:00

This project has been ported to Windows, including stack tracing, signal
handling, and unit tests.

A Visual Studio solution file is explicitly not provided because it is not
maintainable. Instead, a CMake build system exists to generate the correct
solution for your version of Visual Studio.

In short,
  (1) Install CMake from: https://cmake.org/download/
  (2) With CMake on your PATH, run `cmake .` to generate the build files
  (3) Either use `cmake --build`, or open the generated solution

CMake provides different generators, and by default will pick the most relevant
one to your environment. If you need a specific version of Visual Studio, use
`cmake . -G <generator-name>`, and see `cmake --help` for the available
generators. Also see `-T <toolset-name>`, which can used to request the native
x64 toolchain with `-T host=x64`.