All Downloads are FREE. Search and download functionalities are using the official Maven repository.

godot.gradle.tasks.graal.nativeImageToolAccessible.kt Maven / Gradle / Ivy

package godot.gradle.tasks.graal

import godot.gradle.exception.GraalNativeImageToolNotFountException
import godot.gradle.projectExt.checkToolAccessible
import godot.gradle.projectExt.godotJvmExtension
import org.gradle.api.Project
import org.gradle.api.Task
import org.gradle.api.tasks.TaskProvider

fun Project.checkNativeImageToolAccessibleTask(): TaskProvider {
    return tasks.register("checkNativeImageToolAccessible") {
        with(it) {
            group = "godot-kotlin-jvm"
            description =
                "Checks if the GraalVM native image tool is accessible and executable. Needed for GraalVM native-image builds only"

            doLast {
                try {
                    val result = checkToolAccessible(godotJvmExtension.nativeImageToolPath.get().asFile.absolutePath)
                    if (result.exitValue != 0) {
                        throw GraalNativeImageToolNotFountException()
                    }
                } catch (e: Throwable) {
                    throw GraalNativeImageToolNotFountException()
                }
            }
        }
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy