improved TCString support

This commit is contained in:
Dustin J. Mitchell
2022-01-23 23:58:47 +00:00
parent bb722325fe
commit 65082c26e7
9 changed files with 183 additions and 76 deletions

View File

@@ -3,14 +3,16 @@ INC=-I ../lib
LIB=-L ../target/debug
RPATH=-Wl,-rpath,../target/debug
TESTS = replica.cpp uuid.cpp task.cpp
TESTS = replica.cpp string.cpp uuid.cpp task.cpp
.PHONY: all test
all: test
test: doctest
@rm -rf test-db
@./doctest --no-version --no-intro
@rm -rf test-db
%.o: %.cpp ../lib/taskchampion.h
$(CXX) $(INC) -c $< -o $@