API Documentation: | DependentSourceSet |
---|
Note: This class is incubating and may change in a future version of Gradle.
A source set that depends on one or more NativeDependencySet
s to be built.
Method | Description |
dependency(dep) | Incubating Add a dependency to this source set. |
lib(library) | Incubating Adds a library that this source set requires. This method accepts the following types: |
source(config) | Incubating Configure the sources |
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.
SourceDirectorySet
source
(read-only)
Note: This property is incubating and may change in a future version of Gradle.
The source files.
void
dependency
(Map
<?, ?>
dep)
Map
<?, ?>Note: This method is incubating and may change in a future version of Gradle.
Add a dependency to this source set.
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
NativeLibrary
- A
NativeDependencySet
- A
Map
containing 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