Changeset 0edec5a2ae in tspsg


Ignore:
Timestamp:
Mar 31, 2013, 1:46:32 PM (11 years ago)
Author:
Oleksii Serdiuk
Branches:
0.1.4.170-beta2-bb10
Children:
aa64ad4082
Parents:
b5a996bd47
git-author:
Oleksii Serdiuk <contacts@…> (03/31/13 13:46:32)
git-committer:
Oleksii Serdiuk <contacts@…> (03/31/13 13:54:16)
Message:

Created BlackBerry? 10 packaging rules.

Files:
1 added
3 edited

Legend:

Unmodified
Added
Removed
  • src/globals.h

    rb5a996bd47 r0edec5a2ae  
    3434#   error You are using Qt version < 4.5 but minimum required version is 4.5.0. Compilation aborted.
    3535#endif
    36 #if defined(Q_WS_WINCE_WM) || defined(Q_WS_S60) || defined(Q_WS_MAEMO_5) || defined(Q_WS_SIMULATOR)
     36#if defined(Q_WS_WINCE_WM) || defined(Q_WS_S60) || defined(Q_WS_MAEMO_5) || defined(Q_WS_SIMULATOR) || defined(Q_OS_BLACKBERRY)
    3737    //! This is defined on handheld devices (e.g., Windows Mobile, Symbian).
    3838#   define HANDHELD
  • tspsg.pri

    rb5a996bd47 r0edec5a2ae  
    5757    l10n/tspsg_uk.ts
    5858
     59blackberry {
     60    OTHER_FILES += \
     61        bar-descriptor.xml
     62}
     63
    5964!nopch {
    6065    # Precompiled header
  • tspsg.pro

    rb5a996bd47 r0edec5a2ae  
    1717}
    1818
    19 wincewm*|symbian|maemo*|simulator {
     19wincewm*|symbian|maemo*|simulator|blackberry {
    2020    CONFIG += handheld
    2121}
     
    6363    BUILD_NUMBER=$$REVISION
    6464
    65 CONFIG(release, debug|release) {
    66     OBJECTS_DIR = release
    67     D =
     65blackberry {
     66    TARGET = tspsg
    6867} else {
    69     OBJECTS_DIR = debug
    70     DEFINES += DEBUG
    71 #       CONFIG += console
    72     D = d
     68    CONFIG(release, debug|release) {
     69        OBJECTS_DIR = release
     70        D =
     71    } else {
     72        OBJECTS_DIR = debug
     73        DEFINES += DEBUG
     74#        CONFIG += console
     75        D = d
     76    }
     77    DESTDIR = bin
     78    TARGET = tspsg$${D}
    7379}
    74 DESTDIR = bin
    75 TARGET = tspsg$${D}
    7680
    7781# Saving all intermediate files to tmp directory.
Note: See TracChangeset for help on using the changeset viewer.