tools/configure/configureapp.cpp
branchRCL_3
changeset 4 3b1da2848fc7
parent 3 41300fa6a67c
child 5 d3bac044e0f0
equal deleted inserted replaced
3:41300fa6a67c 4:3b1da2848fc7
     1 /****************************************************************************
     1 /****************************************************************************
     2 **
     2 **
     3 ** Copyright (C) 2009 Nokia Corporation and/or its subsidiary(-ies).
     3 ** Copyright (C) 2010 Nokia Corporation and/or its subsidiary(-ies).
     4 ** All rights reserved.
     4 ** All rights reserved.
     5 ** Contact: Nokia Corporation (qt-info@nokia.com)
     5 ** Contact: Nokia Corporation (qt-info@nokia.com)
     6 **
     6 **
     7 ** This file is part of the tools applications of the Qt Toolkit.
     7 ** This file is part of the tools applications of the Qt Toolkit.
     8 **
     8 **
  2771             configStream << "QMAKE_RPATHDIR += " << dictionary["QMAKE_RPATHDIR"] << endl;
  2771             configStream << "QMAKE_RPATHDIR += " << dictionary["QMAKE_RPATHDIR"] << endl;
  2772 
  2772 
  2773         if (!dictionary["QT_LIBINFIX"].isEmpty())
  2773         if (!dictionary["QT_LIBINFIX"].isEmpty())
  2774             configStream << "QT_LIBINFIX = " << dictionary["QT_LIBINFIX"] << endl;
  2774             configStream << "QT_LIBINFIX = " << dictionary["QT_LIBINFIX"] << endl;
  2775 
  2775 
       
  2776         configStream << "#Qt for Symbian FPU settings" << endl;
  2776         if(!dictionary["ARM_FPU_TYPE"].isEmpty()) {
  2777         if(!dictionary["ARM_FPU_TYPE"].isEmpty()) {
  2777             configStream<<"QMAKE_CXXFLAGS.ARMCC += --fpu "<< dictionary["ARM_FPU_TYPE"];
  2778             configStream<<"MMP_RULES += \"ARMFPU "<< dictionary["ARM_FPU_TYPE"]<< "\"";
  2778         }
  2779         }
  2779 
  2780 
  2780         configStream.flush();
  2781         configStream.flush();
  2781         configFile.close();
  2782         configFile.close();
  2782     }
  2783     }