mirror of
https://github.com/gabime/spdlog.git
synced 2024-11-15 08:25:43 +08:00
fixed makefile
This commit is contained in:
parent
0e3120ba51
commit
d89628bb17
@ -1,5 +1,5 @@
|
||||
CXX = g++
|
||||
CXXFLAGS = --march=native -Wall -Wshadow -Wextra -pedantic -std=c++11 -pthread -Wl,--no-as-needed -I../include
|
||||
CXXFLAGS = -march=native -Wall -Wshadow -Wextra -pedantic -std=c++11 -pthread -Wl,--no-as-needed -I../include
|
||||
CXX_RELEASE_FLAGS = -O3 -flto
|
||||
|
||||
|
||||
|
@ -27,7 +27,7 @@
|
||||
//
|
||||
#include <iostream>
|
||||
#include "spdlog/spdlog.h"
|
||||
|
||||
#include "spdlog/details/format.h"
|
||||
|
||||
int main(int, char* [])
|
||||
{
|
||||
@ -36,6 +36,8 @@ int main(int, char* [])
|
||||
|
||||
try
|
||||
{
|
||||
fmt::print("Hello man {} {:1f}\n", 1, 2.2);
|
||||
return 0;
|
||||
std::string filename = "logs/spdlog_example";
|
||||
// Set log level to all loggers to DEBUG and above
|
||||
spd::set_level(spd::level::DEBUG);
|
||||
|
Loading…
Reference in New Issue
Block a user