summaryrefslogtreecommitdiffstats
path: root/src/client/client.pro
diff options
context:
space:
mode:
authorKevin Simons <kevin.simons@nokia.com>2012-04-09 23:51:44 +0200
committerQt by Nokia <qt-info@nokia.com>2012-04-18 20:12:40 +0200
commit05f0ac87f6c02cc42c2be8c6f64b753a86eb9e1f (patch)
treee07ad1f61bd7ea27df3c1cfba4761d22459c3d70 /src/client/client.pro
parent7895ece7cd6b8bf83eaccf3e7e616107a4748911 (diff)
Support private partitions
Enables support for private partitions on a per-user basis. The private partition is stored in a user's home directory. The database client directly accesses these private partitions without needing the daemon to act as an intermediary. Private partitions are addressed using the scheme: username.Private Private partitions do not currently support notifications. Fixes bug #3519. Change-Id: Ibd31087b6c3efdfc837c316487fa5fe05b23212e Reviewed-by: Jamey Hicks <jamey.hicks@nokia.com>
Diffstat (limited to 'src/client/client.pro')
-rw-r--r--src/client/client.pro8
1 files changed, 5 insertions, 3 deletions
diff --git a/src/client/client.pro b/src/client/client.pro
index 7c9a034d..e57e1f9e 100644
--- a/src/client/client.pro
+++ b/src/client/client.pro
@@ -9,7 +9,7 @@ DESTDIR = $$QT.jsondb.libs
VERSION = $$QT.jsondb.VERSION
DEFINES += QT_JSONDB_LIB
-QT = core network
+QT = core network jsondbpartition
CONFIG += module create_prl
MODULE_PRI = ../../modules/qt_jsondb.pri
@@ -33,7 +33,8 @@ HEADERS += \
qjsondbflushrequest_p.h \
qjsondbwatcher_p.h \
qjsondbwatcher.h \
- qjsondbobject.h
+ qjsondbobject.h \
+ qjsondbprivatepartition_p.h
SOURCES += \
qjsondbconnection.cpp \
@@ -42,6 +43,7 @@ SOURCES += \
qjsondbwriterequest.cpp \
qjsondbflushrequest_p.cpp \
qjsondbwatcher.cpp \
- qjsondbobject.cpp
+ qjsondbobject.cpp \
+ qjsondbprivatepartition.cpp
mac:QMAKE_FRAMEWORK_BUNDLE_NAME = $$QT.jsondb.name