Package org.gradle.nativeplatform.internal.prebuilt

Examples of org.gradle.nativeplatform.internal.prebuilt.PrebuiltLibraryBinaryLocator


    }

    public LibraryBinaryLocator createLibraryBinaryLocator(ProjectLocator projectLocator) {
        List<LibraryBinaryLocator> locators = new ArrayList<LibraryBinaryLocator>();
        locators.add(new ProjectLibraryBinaryLocator(projectLocator));
        locators.add(new PrebuiltLibraryBinaryLocator(projectLocator));
        return new ChainedLibraryBinaryLocator(locators);
    }
View Full Code Here

TOP

Related Classes of org.gradle.nativeplatform.internal.prebuilt.PrebuiltLibraryBinaryLocator

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.