static lib wip

This commit is contained in:
gabime
2019-04-05 16:44:17 +03:00
parent ef8773a89b
commit e2e3df9013
15 changed files with 1029 additions and 1255 deletions

View File

@@ -10,16 +10,15 @@
#include "spdlog/logger.h"
namespace spdlog {
class logger;
}
spdlog::logger *get_logger();
int main(int, char *[])
{
auto *l = get_logger();
l->info("HELLO");
l->info("HELLO {}", "World");
l->warn("SOME WARNINNG");
l->error("Some {}", "error");
}