Package org.gradle.nativeplatform.platform.internal

Examples of org.gradle.nativeplatform.platform.internal.DefaultNativePlatform


    /**
     * @return A list of all known tool chains for this platform. Includes those tool chains that are not available on the current machine.
     */
    public static List<ToolChainCandidate> getToolChains() {
        DefaultNativePlatform targetPlatform = DefaultNativePlatform.getDefault();
        if (toolChains == null) {
            List<ToolChainCandidate> compilers = new ArrayList<ToolChainCandidate>();
            if (targetPlatform.getOperatingSystem().isWindows()) {
                compilers.add(findVisualCpp(targetPlatform));
                compilers.add(findMinGW());
                compilers.add(findCygwin());
            } else {
                compilers.add(findGcc(targetPlatform));
View Full Code Here

TOP

Related Classes of org.gradle.nativeplatform.platform.internal.DefaultNativePlatform

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.