diff options
author | Constantin Michael <constantin@codesynthesis.com> | 2011-04-11 18:22:24 +0200 |
---|---|---|
committer | Constantin Michael <constantin@codesynthesis.com> | 2011-04-22 18:52:23 +0200 |
commit | 3150aa68bf21483bbeb947030992fe8909efbc77 (patch) | |
tree | 98828b4ff91c6938e06bdb42a12d331fc0b4f701 /qt/makefile | |
parent | 26f3245189b3f5d4a96587953ac1d33f45465f1d (diff) |
Add qt/basic and qt/date-time SQLite tests
Diffstat (limited to 'qt/makefile')
-rw-r--r-- | qt/makefile | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/qt/makefile b/qt/makefile index b8758a5..9dc901a 100644 --- a/qt/makefile +++ b/qt/makefile @@ -5,11 +5,13 @@ include $(dir $(lastword $(MAKEFILE_LIST)))../build/bootstrap.make -all_dirs := mysql +all_dirs := mysql sqlite dirs := ifeq ($(db_id),mysql) dirs += mysql +else ifeq ($(db_id), sqlite) +dirs += sqlite endif default := $(out_base)/ |