diff options
-rw-r--r-- | src/corelib/corelib.pro | 8 | ||||
-rw-r--r-- | src/sql/sql.pro | 8 |
2 files changed, 14 insertions, 2 deletions
diff --git a/src/corelib/corelib.pro b/src/corelib/corelib.pro index 469225e..c55c2da 100644 --- a/src/corelib/corelib.pro +++ b/src/corelib/corelib.pro @@ -27,4 +27,10 @@ QMAKE_DYNAMIC_LIST_FILE = $$PWD/QtCore.dynlist contains(DEFINES,QT_EVAL):include(eval.pri) -symbian:TARGET.UID3=0x2001B2DC
\ No newline at end of file +symbian: { + TARGET.UID3=0x2001B2DC + + # Workaroud for problems with paging this dll + MMP_RULES -= PAGED + MMP_RULES *= UNPAGED +}
\ No newline at end of file diff --git a/src/sql/sql.pro b/src/sql/sql.pro index f089dd7..60be748 100644 --- a/src/sql/sql.pro +++ b/src/sql/sql.pro @@ -17,5 +17,11 @@ include(kernel/kernel.pri) include(drivers/drivers.pri) include(models/models.pri) -symbian:TARGET.UID3=0x2001E61D +symbian: { + TARGET.UID3=0x2001E61D + + # Workaroud for problems with paging this dll + MMP_RULES -= PAGED + MMP_RULES *= UNPAGED +} |