use of org.gradle.language.nativeplatform.DependentSourceSet in project gradle by gradle.
the class AbstractNativeBinarySpec method resolve.
private NativeBinaryResolveResult resolve(Iterable<? extends DependentSourceSet> sourceSets) {
Set<? super Object> allLibs = new LinkedHashSet<Object>(libs);
for (DependentSourceSet dependentSourceSet : sourceSets) {
allLibs.addAll(dependentSourceSet.getLibs());
}
NativeBinaryResolveResult resolution = new NativeBinaryResolveResult(this, allLibs);
resolver.resolve(resolution);
return resolution;
}
use of org.gradle.language.nativeplatform.DependentSourceSet in project gradle by gradle.
the class CompileTaskConfig method configureCompileTaskCommon.
private void configureCompileTaskCommon(final AbstractNativeCompileTask task, final NativeBinarySpecInternal binary, final LanguageSourceSetInternal sourceSet) {
task.getToolChain().set(binary.getToolChain());
task.getTargetPlatform().set(binary.getTargetPlatform());
task.setPositionIndependentCode(binary instanceof SharedLibraryBinarySpec);
task.includes(((HeaderExportingSourceSet) sourceSet).getExportedHeaders().getSourceDirectories());
task.includes(new Callable<List<FileCollection>>() {
@Override
public List<FileCollection> call() {
Collection<NativeDependencySet> libs = binary.getLibs((DependentSourceSet) sourceSet);
return CollectionUtils.collect(libs, new Transformer<FileCollection, NativeDependencySet>() {
@Override
public FileCollection transform(NativeDependencySet original) {
return original.getIncludeRoots();
}
});
}
});
FileCollectionFactory fileCollectionFactory = ((ProjectInternal) task.getProject()).getServices().get(FileCollectionFactory.class);
task.getSystemIncludes().from(fileCollectionFactory.create(new MinimalFileSet() {
@Override
public Set<File> getFiles() {
PlatformToolProvider platformToolProvider = ((NativeToolChainInternal) binary.getToolChain()).select((NativePlatformInternal) binary.getTargetPlatform());
ToolType toolType = languageTransform.getToolType();
return new LinkedHashSet<File>(platformToolProvider.getSystemLibraries(toolType).getIncludeDirs());
}
@Override
public String getDisplayName() {
return "System includes for " + binary.getToolChain().getDisplayName();
}
}));
for (String toolName : languageTransform.getBinaryTools().keySet()) {
Tool tool = binary.getToolByName(toolName);
if (tool instanceof PreprocessingTool) {
task.setMacros(((PreprocessingTool) tool).getMacros());
}
task.getCompilerArgs().set(tool.getArgs());
}
}
Aggregations