remove loguru

This commit is contained in:
Nam Tran
2020-11-24 15:05:42 -06:00
parent 3c6f2cbeb4
commit 7501c9ff77
4 changed files with 17 additions and 31 deletions

View File

@@ -1,10 +1,10 @@
target = r
CXX = g++
CXX_FLAGS := -std=c++14 -Iloguru -Wall
CXX_FLAGS := -std=c++14 -Ispdlog/include -Wall
LD_FLAGS := -lpthread -ldl
# LOGURU_FLAG := -DLOGURU_SCOPE_TIME_PRECISION=9
BUILD := ./build
OBJS := $(BUILD)/client.o $(BUILD)/loguru.o
OBJS := $(BUILD)/client.o
all: $(target)