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 java.lang.String
getLibraryName()
The name of the required library.java.lang.String
getLinkage()
The required linkage.java.lang.String
getProjectPath()
The path to the project containing the library.NativeLibraryRequirement
withProjectPath(java.lang.String projectPath)
Creates a copy of this requirement with the specified project path
-
-
-
Method Detail
-
getProjectPath
java.lang.String getProjectPath()
The path to the project containing the library.
-
getLibraryName
java.lang.String getLibraryName()
The name of the required library.
-
getLinkage
java.lang.String getLinkage()
The required linkage.
-
withProjectPath
NativeLibraryRequirement withProjectPath(java.lang.String projectPath)
Creates a copy of this requirement with the specified project path
-
-