Package org.gradle.nativeplatform
Interface NativeComponentExtension
The configuration for native components generated by this build.
-
Method Summary
Modifier and TypeMethodDescriptionvoid
executables
(Action<? super NamedDomainObjectContainer<? super NativeExecutableSpec>> action) Configure theNativeExecutableSpec
components produced by the build.TheNativeExecutableSpec
components produced by the build.TheNativeLibrarySpec
components produced by the build.void
libraries
(Action<? super NamedDomainObjectContainer<? super NativeLibrarySpec>> action) Configure theNativeLibrarySpec
components produced by the build.
-
Method Details
-
getExecutables
NamedDomainObjectContainer<NativeExecutableSpec> getExecutables()TheNativeExecutableSpec
components produced by the build. -
executables
Configure theNativeExecutableSpec
components produced by the build. -
getLibraries
NamedDomainObjectContainer<NativeLibrarySpec> getLibraries()TheNativeLibrarySpec
components produced by the build. -
libraries
Configure theNativeLibrarySpec
components produced by the build.
-