Package dtool.engine.compiler_installs

Examples of dtool.engine.compiler_installs.CompilerInstall


  }
 
  protected void testDetectInstall(Path installPath, String compilerPathStr, String resolvedCompilerPathStr,
      ECompilerType type, List<String> pathStrings) {
    Path compilerPath = installPath.resolve(compilerPathStr).normalize();
    CompilerInstall install = detector.detectInstallFromCompilerCommandPath(compilerPath);
    Path resolvedCompilerPath = installPath.resolve(resolvedCompilerPathStr).normalize();
    checkInstall(install, resolvedCompilerPath, type, installPath, pathStrings);
  }
View Full Code Here


      dtoolServer.logMessage(message);
    }
  }
 
  protected StandardLibraryResolution getUpdatedStdLibResolution(Path compilerPath) {
    CompilerInstall foundInstall = getCompilerInstallForNewResolution(compilerPath);
    return stdLibResolutions.getEntry(foundInstall); // found install can be null
  }
View Full Code Here

      DeeCore.logWarning(message);
    }
  }
 
  protected final ProjectInfo addProjectInfo(IProject project, DubBundleDescription dubBundleDescription) {
    CompilerInstall compilerInstall = new SearchCompilersOnPathOperation_Eclipse().
        searchForCompilersInDefaultPathEnvVars().getPreferredInstall();
   
    return model.addProjectInfo(project, dubBundleDescription, compilerInstall);
  }
View Full Code Here

TOP

Related Classes of dtool.engine.compiler_installs.CompilerInstall

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.