- added MultiBuffer

- improved tests
This commit is contained in:
2025-10-27 21:48:51 +01:00
parent 9fedd040b3
commit 7f66f9e60d
7 changed files with 153 additions and 19 deletions
+2 -2
View File
@@ -5,7 +5,7 @@ CC=clang
CCC=clang++
CXX=clang++
NAME := test_dsp_buffer
NAME := test_main
CONFIG ?= debug
TARGET ?= $(NAME)
@@ -13,7 +13,7 @@ CXXFLAGS += -std=c++20
INCLUDES += -I $(realpath .) -I $(realpath ../../)
CXX_SRCS := test_buffer.cpp
CXX_SRCS := test_main.cpp test_buffer.cpp test_buffer_multi.cpp
LIBS := -lstdc++