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/property.cpp

    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)
     
    9696    else if(v == "QT_INSTALL_PLUGINS")
    9797        return QLibraryInfo::location(QLibraryInfo::PluginsPath);
     98    else if(v == "QT_INSTALL_IMPORTS")
     99        return QLibraryInfo::location(QLibraryInfo::ImportsPath);
    98100    else if(v == "QT_INSTALL_TRANSLATIONS")
    99101        return QLibraryInfo::location(QLibraryInfo::TranslationsPath);
     
    105107        return QLibraryInfo::location(QLibraryInfo::DemosPath);
    106108    else if(v == "QMAKE_MKSPECS")
    107         return qmake_mkspec_paths().join(Option::target_mode == Option::TARG_WIN_MODE ||
    108                                          Option::target_mode == Option::TARG_OS2_MODE ? ";" : ":");
     109        return qmake_mkspec_paths().join(Option::dirlist_sep);
    109110    else if(v == "QMAKE_VERSION")
    110111        return qmake_version();
     
    193194            specialProps.append("QT_INSTALL_BINS");
    194195            specialProps.append("QT_INSTALL_PLUGINS");
     196            specialProps.append("QT_INSTALL_IMPORTS");
    195197            specialProps.append("QT_INSTALL_TRANSLATIONS");
    196198            specialProps.append("QT_INSTALL_CONFIGURATION");
Note: See TracChangeset for help on using the changeset viewer.