Package org.gradle.nativeplatform
Interface NativeLibraryRequirement
-
@Incubating public interface NativeLibraryRequirement
A dependency on a native library within the build.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description StringgetLibraryName()The name of the required library.StringgetLinkage()The required linkage.StringgetProjectPath()The path to the project containing the library.NativeLibraryRequirementwithProjectPath(String projectPath)Creates a copy of this requirement with the specified project path
-
-
-
Method Detail
-
getProjectPath
String getProjectPath()
The path to the project containing the library.
-
getLibraryName
String getLibraryName()
The name of the required library.
-
getLinkage
String getLinkage()
The required linkage.
-
withProjectPath
NativeLibraryRequirement withProjectPath(String projectPath)
Creates a copy of this requirement with the specified project path
-
-