| API Documentation: | ObjectiveCppSourceSet |
|---|
Note: This class is incubating and may change in a future version of Gradle.
A set of Objective-C++ source files.
An Objective-C++ source set contains a set of source files, together with an optional set of exported header files.
apply plugin: "objective-cpp" model { components { main(NativeLibrarySpec) { sources { objcpp { source { srcDirs "src/main/objectiveCpp", "src/shared/objectiveCpp" include "**/*.mm" } exportedHeaders { srcDirs "src/main/include" } } } } } }
| Property | Description |
buildDependencies | Returns a dependency which contains the tasks which build this artifact. All |
buildTask | Incubating The 'lifecycle' task associated with the construction of this element. |
exportedHeaders | Incubating The headers as a directory set. |
libs | Incubating The libraries that this source set requires. |
preCompiledHeader | Incubating The pre-compiled header configured for this source set. |
source | Incubating The source files. |
| Method | Description |
builtBy(tasks) | Incubating Adds a task that is required for the construction of this element. A task added this way is then added as a dependency of the associated lifecycle task. |
exportedHeaders(config) | Incubating Configure the exported header directories. |
lib(library) | Incubating Adds a library that this source set requires. This method accepts the following types: |
source(config) | Incubating Configure the sources |
TaskDependency buildDependencies (read-only)
Returns a dependency which contains the tasks which build this artifact. All Buildable implementations
must ensure that the returned dependency object is live, so that it tracks changes to the dependencies of this
buildable.
Task buildTask
Note: This property is incubating and may change in a future version of Gradle.
The 'lifecycle' task associated with the construction of this element.
SourceDirectorySet exportedHeaders (read-only)
Note: This property is incubating and may change in a future version of Gradle.
The headers as a directory set.
Collection<?> libs (read-only)
Collection<?>Note: This property is incubating and may change in a future version of Gradle.
The libraries that this source set requires.
String preCompiledHeader
Note: This property is incubating and may change in a future version of Gradle.
The pre-compiled header configured for this source set.
SourceDirectorySet source (read-only)
Note: This property is incubating and may change in a future version of Gradle.
The source files.
void builtBy(Object... tasks)
Object...Note: This method is incubating and may change in a future version of Gradle.
Adds a task that is required for the construction of this element. A task added this way is then added as a dependency of the associated lifecycle task.
void exportedHeaders(Action<? super SourceDirectorySet> config)
Action<? super SourceDirectorySet>Note: This method is incubating and may change in a future version of Gradle.
Configure the exported header directories.
void lib(Object library)
Note: This method is incubating and may change in a future version of Gradle.
Adds a library that this source set requires. This method accepts the following types:
- A
NativeLibrarySpec - A
NativeDependencySet - A
LanguageSourceSet - A
Mapcontaining the library selector.
The Map notation supports the following String attributes:
- project: the path to the project containing the library (optional, defaults to current project)
- library: the name of the library (required)
- linkage: the library linkage required ['shared'/'static'] (optional, defaults to 'shared')
void source(Action<? super SourceDirectorySet> config)
Action<? super SourceDirectorySet>Note: This method is incubating and may change in a future version of Gradle.
Configure the sources