public string GetQMakeConfEntry(string entryName)
 {
     if (qmakeConf == null)
     {
         qmakeConf = new QMakeConf(this);
     }
     return(qmakeConf.Get(entryName));
 }
Ejemplo n.º 2
0
        /// <summary>
        /// Read platform name and whether this is a WinCE version from qmake.conf.
        /// </summary>
        private void SetupPlatformSpecificData()
        {
            qmakeConf      = qmakeConf ?? new QMakeConf(this);
            qtWinCEVersion = false;

            string ceSDK  = qmakeConf.Get("CE_SDK");
            string ceArch = qmakeConf.Get("CE_ARCH");

            if (ceSDK != null && ceArch != null)
            {
                vsPlatformName = ceSDK + " (" + ceArch + ")";
                qtWinCEVersion = true;
            }
            else if (is64Bit())
            {
                vsPlatformName = "x64";
            }
            else
            {
                vsPlatformName = "Win32";
            }
        }
Ejemplo n.º 3
0
 public string GetQMakeConfEntry(string entryName)
 {
     qmakeConf = qmakeConf ?? new QMakeConf(this);
     return(qmakeConf.Get(entryName));
 }