Package org.eclipse.cdt.managedbuilder.gnu.cygwin

Examples of org.eclipse.cdt.managedbuilder.gnu.cygwin.GnuCygwinConfigurationEnvironmentSupplier


              new MingwEnvironmentVariableSupplier();
            mingwPath = mingwEnvironmentVariables.getVariable(
                ENV_VAR_NAME_PATH, null, null);
            //try to find cygwin path from GnuCygwinConfigurationEnvironmentSupplier
            IConfigurationEnvironmentVariableSupplier cygwinEnvironmentVariables =
              new GnuCygwinConfigurationEnvironmentSupplier();
            cygwinPath = cygwinEnvironmentVariables.getVariable(
                ENV_VAR_NAME_PATH, null, null);

          }
          //if mingw found
          if (mingwPath != null) {
View Full Code Here

TOP

Related Classes of org.eclipse.cdt.managedbuilder.gnu.cygwin.GnuCygwinConfigurationEnvironmentSupplier

Copyright © 2018 www.massapicom. 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.