Squashed 'libs/loguru/' content from commit 644f60d

git-subtree-dir: libs/loguru
git-subtree-split: 644f60dca77de3b0f718a03d370c8ebdf5f97968
This commit is contained in:
Henry Winkel
2022-09-15 09:52:21 +02:00
commit 8e97373d88
30 changed files with 5801 additions and 0 deletions

13
glog_example/main.cpp Normal file
View File

@@ -0,0 +1,13 @@
#include <iostream>
#include "glog_example.hpp"
int main(int argc, char* argv[])
{
FLAGS_alsologtostderr = true;
FLAGS_colorlogtostderr = true;
google::ParseCommandLineFlags(&argc, &argv, true);
google::InitGoogleLogging(argv[0]);
LOG(INFO) << "Hello from main.cpp!";
complex_calculation();
LOG(INFO) << "main function about to end!";
}