diff options
author | Boris Kolpackov <boris@codesynthesis.com> | 2013-02-05 15:50:08 +0200 |
---|---|---|
committer | Boris Kolpackov <boris@codesynthesis.com> | 2013-02-05 15:50:08 +0200 |
commit | 43fa55c1b8e389838c83be933bb30a2caaf7468d (patch) | |
tree | 310bc0ecc43ea38276a7e8ff2a541f2cba395333 /qt/common/makefile | |
parent | 3eee63801cbe833f6557d6f85c5778b6209140be (diff) |
Add support for change-tracking containers
ODB now supports "smart" ordered containers. Such containers get extra
functions for updating and deleting individual elements. Based on this
functionality implement two change-tracking containers: odb::vector
(equivalent to std::vector) and QOdbList (equivalent to QList). New
tests: common/container/change-tracking and qt/common/container/change-
tracking.
Diffstat (limited to 'qt/common/makefile')
-rw-r--r-- | qt/common/makefile | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/qt/common/makefile b/qt/common/makefile index 33b17aa..2cadcee 100644 --- a/qt/common/makefile +++ b/qt/common/makefile @@ -4,10 +4,11 @@ include $(dir $(lastword $(MAKEFILE_LIST)))../../build/bootstrap.make -tests := \ -basic \ -containers \ -smart-ptr \ +tests := \ +basic \ +containers/basics \ +containers/change-tracking \ +smart-ptr \ template all_tests := $(tests) |