feat(app): add threaded logger worker

This commit is contained in:
user
2026-07-21 13:46:06 +04:00
parent ee5fec311c
commit 569208c271
3 changed files with 28 additions and 6 deletions
+5 -1
View File
@@ -1,4 +1,5 @@
CXXFLAGS := \
-I$(ROOT_DIR)/app/include \
-I$(ROOT_DIR)/core/include \
-I$(ROOT_DIR)/logger/include
@@ -9,7 +10,10 @@ LDLIBS += -llogger
TARGET := $(BUILD_DIR)/logger_app
SRC := src/main.cpp
SRC := \
src/main.cpp \
src/message_queue.cpp \
src/logger_worker.cpp
.PHONY: all clean