C++ implementation of the Google logging module
The macro NDEBUG could be automatically defined for release build on some build environments (e.g. MSVC). If we use NDEBUG as a key to distinguish using DCHECK as CHECK (I call this DCHECK is enabled) or not, we cannot make DCHECK enabled for release build on such environments. Considering people use a program with glog for presubmit testing or dogfooding, they should need to do release build with DCHECK enabled. |
||
|---|---|---|
| cmake | ||
| doc | ||
| m4 | ||
| packages | ||
| src | ||
| vsprojects | ||
| .gitignore | ||
| aclocal.m4 | ||
| AUTHORS | ||
| ChangeLog | ||
| CMakeLists.txt | ||
| compile | ||
| config.guess | ||
| config.sub | ||
| configure | ||
| configure.ac | ||
| CONTRIBUTING.md | ||
| CONTRIBUTORS | ||
| COPYING | ||
| depcomp | ||
| glog-config.cmake.in | ||
| google-glog.sln | ||
| INSTALL | ||
| install-sh | ||
| libglog.pc.in | ||
| ltmain.sh | ||
| Makefile.am | ||
| Makefile.in | ||
| missing | ||
| mkinstalldirs | ||
| NEWS | ||
| README | ||
| README.windows | ||
| test-driver | ||
This repository contains a C++ implementation of the Google logging module. Documentation for the implementation is in doc/. See INSTALL for (generic) installation instructions for C++: basically ./configure && make && make install