Examples of IToolChain


Examples of org.eclipse.cdt.managedbuilder.core.IToolChain

          }
        }

        // handle case where no toolchain w/ a config was found, like on
        // windows when eclipse can't find cygwin or mingw.
        IToolChain ntc = ManagedBuildManager
          .getExtensionToolChain(ConfigurationDataProvider.PREF_TC_ID);
        handler = new LocalSTDWizardHandler(
            value, EclimPlugin.getShell(), null, ntc);
      }
    }
View Full Code Here

Examples of org.eclipse.cdt.managedbuilder.core.IToolChain

    public CfgHolder[] getCfgItems(boolean defaults)
    {
      CfgHolder[] cfgs = super.getCfgItems(defaults);
      if (cfgs == null || cfgs.length == 0){
        IToolChain tc = ManagedBuildManager
          .getExtensionToolChain(ConfigurationDataProvider.PREF_TC_ID);
        cfgs = new CfgHolder[1];
        cfgs[0] = new CfgHolder(tc, null);
      }
      return cfgs;
View Full Code Here

Examples of org.eclipse.cdt.managedbuilder.core.IToolChain

  //
  // ConfigurationDataProvider.setDefaultLanguageSettingsProviders(project, cfg, cfgDes);

  // Iterate across the configurations
  for (int i = 0; i < alCfgs.size(); i++) {
      IToolChain tcs = ManagedBuildManager.getExtensionToolChain(alCfgs.get(i).ToolchainID);

      Configuration cfg = new Configuration(mProj, (ToolChain) tcs, ManagedBuildManager.calculateChildId(alCfgs.get(i).ToolchainID, null),
        alCfgs.get(i).Name);
      IBuilder bld = cfg.getEditableBuilder();
      if (bld != null) {
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.