diff options
author | Constantin Michael <constantin@codesynthesis.com> | 2011-11-11 13:57:27 +0200 |
---|---|---|
committer | Constantin Michael <constantin@codesynthesis.com> | 2011-11-11 13:57:27 +0200 |
commit | 1b2489b74b3e77d7eef2d18b3b206d9825731762 (patch) | |
tree | c02970f5a24b5ce46fac3a2a3554cb48cac6b1c2 /makefile | |
parent | 95e1a2336699ef7ac8cdd806f7dca8c100ceeb50 (diff) |
Add tests for Oracle support of Qt profile
Diffstat (limited to 'makefile')
-rw-r--r-- | makefile | 11 |
1 files changed, 4 insertions, 7 deletions
@@ -12,6 +12,10 @@ ifeq ($(db_id),mysql) dirs += mysql endif +ifeq ($(db_id),oracle) +dirs += oracle +endif + ifeq ($(db_id),sqlite) dirs += sqlite endif @@ -20,13 +24,6 @@ ifeq ($(db_id),pgsql) dirs += pgsql endif -# @@ Remove overrides when Oracle implementation is complete. -# -ifeq ($(db_id),oracle) -all_dirs := libcommon common mysql sqlite pgsql oracle boost -dirs := common boost oracle -endif - default := $(out_base)/ dist := $(out_base)/.dist test := $(out_base)/.test |