diff options
Diffstat (limited to 'qt')
-rw-r--r-- | qt/Makefile.am | 4 | ||||
-rw-r--r-- | qt/makefile | 2 |
2 files changed, 6 insertions, 0 deletions
diff --git a/qt/Makefile.am b/qt/Makefile.am index 3b3e6f6..fc38fc6 100644 --- a/qt/Makefile.am +++ b/qt/Makefile.am @@ -13,4 +13,8 @@ if DATABASE_SQLITE SUBDIRS += sqlite endif +if DATABASE_PGSQL +SUBDIRS += pgsql +endif + EXTRA_DIST = __file__(extra_dist) diff --git a/qt/makefile b/qt/makefile index f5209cb..a631f24 100644 --- a/qt/makefile +++ b/qt/makefile @@ -12,6 +12,8 @@ ifeq ($(db_id),mysql) dirs += mysql else ifeq ($(db_id),sqlite) dirs += sqlite +else ifeq ($(db_id),pgsql) +dirs += pgsql endif default := $(out_base)/ |