use of org.gradle.language.nativeplatform.HeaderExportingSourceSet 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());
}
}
use of org.gradle.language.nativeplatform.HeaderExportingSourceSet in project gradle by gradle.
the class DefaultVisualStudioProject method getHeaderFiles.
public List<File> getHeaderFiles() {
Set<File> allHeaders = new LinkedHashSet<File>();
for (LanguageSourceSet sourceSet : sources) {
if (sourceSet instanceof HeaderExportingSourceSet) {
HeaderExportingSourceSet exportingSourceSet = (HeaderExportingSourceSet) sourceSet;
allHeaders.addAll(exportingSourceSet.getExportedHeaders().getFiles());
allHeaders.addAll(exportingSourceSet.getImplicitHeaders().getFiles());
}
}
return new ArrayList<File>(allHeaders);
}
use of org.gradle.language.nativeplatform.HeaderExportingSourceSet in project gradle by gradle.
the class NativeSpecVisualStudioTargetBinary method getHeaderFiles.
@Override
public FileCollection getHeaderFiles() {
Spec<LanguageSourceSet> filter = new Spec<LanguageSourceSet>() {
@Override
public boolean isSatisfiedBy(LanguageSourceSet sourceSet) {
return sourceSet instanceof HeaderExportingSourceSet;
}
};
Transformer<FileCollection, LanguageSourceSet> transform = new Transformer<FileCollection, LanguageSourceSet>() {
@Override
public FileCollection transform(LanguageSourceSet sourceSet) {
HeaderExportingSourceSet exportingSourceSet = (HeaderExportingSourceSet) sourceSet;
return exportingSourceSet.getExportedHeaders().plus(exportingSourceSet.getImplicitHeaders());
}
};
return new LanguageSourceSetCollectionAdapter(getComponentName() + " header files", binary.getInputs(), filter, transform);
}
Aggregations