@Incubating public class CppLibraryPlugin extends Object implements Plugin<Project>
A plugin that produces a native library from C++ source.
Assumes the source files are located in `src/main/cpp`, public headers are located in `src/main/public` and implementation header files are located in `src/main/headers`.
Adds a CppLibrary
extension to the project to allow configuration of the library.
Constructor | Description |
---|---|
CppLibraryPlugin(org.gradle.language.internal.NativeComponentFactory componentFactory,
org.gradle.language.nativeplatform.internal.toolchains.ToolChainSelector toolChainSelector,
org.gradle.api.internal.attributes.ImmutableAttributesFactory attributesFactory,
TargetMachineFactory targetMachineFactory) |
Injects a
FileOperations instance. |
Modifier and Type | Method | Description |
---|---|---|
void |
apply(Project project) |
Apply this plugin to the given target object.
|
@Inject public CppLibraryPlugin(org.gradle.language.internal.NativeComponentFactory componentFactory, org.gradle.language.nativeplatform.internal.toolchains.ToolChainSelector toolChainSelector, org.gradle.api.internal.attributes.ImmutableAttributesFactory attributesFactory, TargetMachineFactory targetMachineFactory)
FileOperations
instance.