dev.nokee.platform.nativebase.BundleBinary Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of platformNative Show documentation
Show all versions of platformNative Show documentation
Painless native development in Gradle
The newest version!
package dev.nokee.platform.nativebase;
import dev.nokee.platform.nativebase.tasks.LinkBundle;
import org.gradle.api.tasks.TaskProvider;
/**
* A bundle built from 1 or more native language.
*
* @since 0.4
*/
public interface BundleBinary extends NativeBinary {
/**
* Returns a provider for the task that links the object files into this binary.
*
* @return a provider of {@link LinkBundle} task, never null.
*/
TaskProvider getLinkTask();
}