Package org.gradle.nativeplatform
Interface NativeBinary
- All Superinterfaces:
Binary
- All Known Subinterfaces:
NativeExecutableBinary
,NativeLibraryBinary
,PrebuiltSharedLibraryBinary
,PrebuiltStaticLibraryBinary
,SharedLibraryBinary
,StaticLibraryBinary
Represents a particular binary artifact.
-
Method Summary
Modifier and TypeMethodDescriptionReturns theBuildType
used to construct this binary.TheFlavor
that this binary was built with.Returns theNativePlatform
that this binary is targeted to run on.Methods inherited from interface org.gradle.platform.base.Binary
getDisplayName
-
Method Details
-
getFlavor
Flavor getFlavor()TheFlavor
that this binary was built with. -
getTargetPlatform
NativePlatform getTargetPlatform()Returns theNativePlatform
that this binary is targeted to run on. -
getBuildType
BuildType getBuildType()Returns theBuildType
used to construct this binary.
-