wip static lib

This commit is contained in:
gabime
2019-04-06 00:15:14 +03:00
parent bfbb4e4050
commit c69c49047b
4 changed files with 309 additions and 225 deletions

View File

@@ -7,6 +7,7 @@
//
//
#include "spdlog/spdlog.h"
#include "spdlog/logger.h"
spdlog::logger *get_logger();
@@ -14,5 +15,5 @@ spdlog::logger *get_logger();
int main(int, char *[])
{
auto *l = get_logger();
l->info(L"HEllo {}", L"HGFS");
l->info("HEllo {}", "HG FS");
}