mirror of
https://github.com/GothenburgBitFactory/taskwarrior.git
synced 2025-09-13 14:30:36 +02:00
Enhancements - task diff
- Implemented util.cpp/taskDiff to generate a proxy description of the difference between two tasks. - Implemented unit tests for taskDiff.
This commit is contained in:
parent
c5d7b41d98
commit
a56eeb9ec2
6 changed files with 186 additions and 7 deletions
|
@ -1,6 +1,6 @@
|
|||
PROJECT = t.t tdb.t date.t duration.t t.benchmark.t text.t autocomplete.t \
|
||||
config.t seq.t att.t stringtable.t record.t nibbler.t subst.t filt.t \
|
||||
cmd.t
|
||||
cmd.t util.t
|
||||
CFLAGS = -I. -I.. -Wall -pedantic -ggdb3 -fno-rtti
|
||||
LFLAGS = -L/usr/local/lib -lncurses
|
||||
OBJECTS = ../TDB.o ../Task.o ../valid.o ../text.o ../Date.o ../Table.o \
|
||||
|
@ -72,3 +72,6 @@ cmd.t: cmd.t.o $(OBJECTS) test.o
|
|||
config.t: config.t.o $(OBJECTS) test.o
|
||||
g++ config.t.o $(OBJECTS) test.o $(LFLAGS) -o config.t
|
||||
|
||||
util.t: util.t.o $(OBJECTS) test.o
|
||||
g++ util.t.o $(OBJECTS) test.o $(LFLAGS) -o util.t
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue