Changeset 846 for trunk/qmake/option.h


Ignore:
Timestamp:
May 5, 2011, 5:36:53 AM (14 years ago)
Author:
Dmitry A. Kuminov
Message:

trunk: Merged in qt 4.7.2 sources from branches/vendor/nokia/qt.

Location:
trunk
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk

  • trunk/qmake/option.h

    r651 r846  
    11/****************************************************************************
    22**
    3 ** Copyright (C) 2010 Nokia Corporation and/or its subsidiary(-ies).
     3** Copyright (C) 2011 Nokia Corporation and/or its subsidiary(-ies).
    44** All rights reserved.
    55** Contact: Nokia Corporation (qt-info@nokia.com)
     
    6464    WarnParser  = 0x01,
    6565    WarnLogic   = 0x02,
     66    WarnDeprecated = 0x04,
    6667    WarnAll     = 0xFF
    6768};
     
    107108    //both of these must be called..
    108109    static int init(int argc=0, char **argv=0); //parse cmdline
     110    static void applyHostMode();
    109111    static bool postProcessProject(QMakeProject *);
    110112
     
    149151    static int debug_level;
    150152    static int warn_level;
    151     static bool recursive;
     153    enum QMAKE_RECURSIVE { QMAKE_RECURSIVE_DEFAULT, QMAKE_RECURSIVE_YES, QMAKE_RECURSIVE_NO };
     154    static QMAKE_RECURSIVE recursive;
    152155    static QStringList before_user_vars, after_user_vars, user_configs, after_user_configs;
    153     enum TARG_MODE { TARG_UNIX_MODE, TARG_WIN_MODE, TARG_MACX_MODE, TARG_MAC9_MODE, TARG_OS2_MODE };
     156    enum HOST_MODE { HOST_UNKNOWN_MODE, HOST_UNIX_MODE, HOST_WIN_MODE, HOST_MACX_MODE,
     157                     HOST_OS2_MODE };
     158    static HOST_MODE host_mode;
     159    enum TARG_MODE { TARG_UNKNOWN_MODE, TARG_UNIX_MODE, TARG_WIN_MODE, TARG_MACX_MODE,
     160                     TARG_SYMBIAN_MODE, TARG_OS2_MODE };
    154161    static TARG_MODE target_mode;
     162    static bool target_mode_overridden;
    155163    static QString user_template, user_template_prefix;
    156164    static QStringList shellPath;
     
    206214        SettingsPath,
    207215        DemosPath,
    208         ExamplesPath
     216        ExamplesPath,
     217        ImportsPath
    209218    };
    210219    static QString location(LibraryLocation);
Note: See TracChangeset for help on using the changeset viewer.