diff options
author | axis <qt-info@nokia.com> | 2010-07-30 09:48:24 (GMT) |
---|---|---|
committer | axis <qt-info@nokia.com> | 2010-08-03 07:28:01 (GMT) |
commit | 4e5622a850783264ecb6cb9f944bccc49cc73b86 (patch) | |
tree | c928f35621300553468fa11a9d9f5ff75acc0408 /mkspecs/common/symbian/symbian.conf | |
parent | 053e703fda93dcb31bfda8b4ea90631191a77f84 (diff) | |
download | Qt-4e5622a850783264ecb6cb9f944bccc49cc73b86.zip Qt-4e5622a850783264ecb6cb9f944bccc49cc73b86.tar.gz Qt-4e5622a850783264ecb6cb9f944bccc49cc73b86.tar.bz2 |
Moved the S60 version detection to the common symbian profile.
RevBy: Trust me
Diffstat (limited to 'mkspecs/common/symbian/symbian.conf')
-rw-r--r-- | mkspecs/common/symbian/symbian.conf | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/mkspecs/common/symbian/symbian.conf b/mkspecs/common/symbian/symbian.conf index 7ec5c6c..161cfe9 100644 --- a/mkspecs/common/symbian/symbian.conf +++ b/mkspecs/common/symbian/symbian.conf @@ -119,6 +119,24 @@ QT_IMPORTS_BASE_DIR = /resource/qt/imports load(qt_config) load(symbian/platform_paths) +exists($${EPOCROOT}epoc32/release/winscw/udeb/z/system/install/series60v5.2.sis)|exists($${EPOCROOT}epoc32/data/z/system/install/series60v5.2.sis) { + S60_VERSION = 5.2 symbian3 +} else { + exists($${EPOCROOT}epoc32/release/winscw/udeb/z/system/install/series60v5.1.sis)|exists($${EPOCROOT}epoc32/data/z/system/install/series60v5.1.sis) { + S60_VERSION = 5.1 symbian2 + } else { + exists($${EPOCROOT}epoc32/release/winscw/udeb/z/system/install/series60v5.0.sis)|exists($${EPOCROOT}epoc32/data/z/system/install/series60v5.0.sis) { + S60_VERSION = 5.0 + } else { + exists($${EPOCROOT}epoc32/release/winscw/udeb/z/system/install/series60v3.2.sis)|exists($${EPOCROOT}epoc32/data/z/system/install/series60v3.2.sis) { + S60_VERSION = 3.2 + } else { + S60_VERSION = 3.1 + } + } + } +} + # pkg_depends_webkit, pkg_depends_core, and pkg_platform_dependencies can be removed by developer # if multiple languages need to be supported by pkg file. In that case the developer should declare # multiple language compatible dependency statements him/herself. |