move completely to spdlog, refactor channel class

This commit is contained in:
Nam Tran
2020-11-24 17:53:31 -06:00
parent 4a692fc42f
commit 14070f8017
5 changed files with 51 additions and 48 deletions

View File

@@ -1,10 +1,10 @@
target = r
CXX = g++
CXX_FLAGS := -std=c++14 -Ispdlog/include -Wall
LD_FLAGS := -lpthread -ldl
CXX_FLAGS := -std=c++14 -I/home/daq/sw/include -Wall -DSPDLOG_COMPILED_LIB
LD_FLAGS := -lpthread -ldl -L/home/daq/sw/lib64 -lspdlog
BUILD := ./build
OBJS := $(BUILD)/client.o
OBJS = $(BUILD)/client.o $(BUILD)/channel.o
all: $(target)