C++ implementation of the Google logging module
This commit addresses a few issues:
1. No longer leak config.h in a way similar to
https://github.com/gflags/gflags/issues/233
The solution of prefixing the path by 'glog_internal' is modified from
https://github.com/gflags/gflags/issues/234
2. No longer expose internal headers.
3. Replace PACKAGE_NAME with native.package_name()
4. Uers can choose namespaces via the newly added 'namespace' keyword.
5. Replace glob with explicitly listing of files.
6. Make the genrules more compact using pythonic list construction.
|
||
|---|---|---|
| bazel | ||
| cmake | ||
| doc | ||
| m4 | ||
| packages | ||
| src | ||
| vsprojects | ||
| .gitignore | ||
| AUTHORS | ||
| autogen.sh | ||
| BUILD | ||
| ChangeLog | ||
| CMakeLists.txt | ||
| configure.ac | ||
| CONTRIBUTING.md | ||
| CONTRIBUTORS | ||
| COPYING | ||
| glog-config.cmake.in | ||
| INSTALL | ||
| libglog.pc.in | ||
| ltmain.sh | ||
| Makefile.am | ||
| NEWS | ||
| README | ||
| README.windows | ||
| WORKSPACE | ||
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 ./autogen.sh && ./configure && make && make install