source: trunk/src/qt_targets.pri

Last change on this file was 1051, checked in by Dmitry A. Kuminov, 14 years ago

OS/2: Add QMAKE_TARGET_VERSION to qt_targets.pri.

This will cause all DLL and EXE targets that include qt_targets.pri to get the
correct verison number embedded w/o playing with the dangerous
VERSION variable (see r1050).

File size: 700 bytes
RevLine 
[2]1QMAKE_TARGET_COMPANY = Nokia Corporation and/or its subsidiary(-ies)
2QMAKE_TARGET_PRODUCT = Qt4
3QMAKE_TARGET_DESCRIPTION = C++ application development framework.
[846]4QMAKE_TARGET_COPYRIGHT = Copyright (C) 2011 Nokia Corporation and/or its subsidiary(-ies).
[383]5
6os2 {
[1051]7 # too long company name does not fit the designated field
[1049]8 QMAKE_TARGET_COMPANY = Nokia
[1051]9 !isEmpty(QT_MAJOR_VERSION) {
10 QMAKE_TARGET_VERSION=$${QT_MAJOR_VERSION}.$${QT_MINOR_VERSION}.$${QT_PATCH_VERSION}
11 !isEmpty(QT_BUILD_VERSION) {
12 # extend the version number embedded in EXEs/DLLs with the build number
13 QMAKE_TARGET_VERSION = $${QMAKE_TARGET_VERSION}.$${QT_BUILD_VERSION}
14 }
[1049]15 }
[383]16}
Note: See TracBrowser for help on using the repository browser.