https://github.com/lostincompilation/logme
Fast asynchronous C++20 Logging Library
https://github.com/lostincompilation/logme
Last synced: 9 months ago
JSON representation
Fast asynchronous C++20 Logging Library
- Host: GitHub
- URL: https://github.com/lostincompilation/logme
- Owner: LostInCompilation
- License: zlib
- Created: 2024-10-28T03:04:07.000Z (about 1 year ago)
- Default Branch: main
- Last Pushed: 2025-01-03T22:36:28.000Z (about 1 year ago)
- Last Synced: 2025-04-12T22:56:49.578Z (9 months ago)
- Language: CMake
- Homepage:
- Size: 142 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE.md
Awesome Lists containing this project
README
# LogMe - Fast and Asynchronous Logging Library for C++20
# Work in Progress
  
## Contents
- [Description](#description)
- [Getting the library](#getting-the-library)
- [Compiling](#compiling)
- [CMake](#cmake)
- [Visual Studio](#visual-studio)
- [Xcode](#xcode)
- [How to use it](#how-to-use-it)
- [Included examples](#included-examples)
*See also: [License (zlib)](LICENSE.md)*
## Description
TODO
## Getting the library
To get the library simply clone the GitHub repository:
~~~
git clone https://github.com/LostInCompilation/LogMe
~~~
## Compiling
TODO
### CMake
TODO
### Visual Studio
TODO
### Xcode
TODO
## How to use it
Include the main header file of the library in your project:
```cpp
#include "LogMe.hpp"
```
LINKING
If you prefer, directly use the namespace for the library:
```cpp
using namespace LogMe;
```
TODO
## Included Examples
TODO