GolemComputers/rust/build.gradle.kts

18 lines
489 B
Plaintext
Raw Permalink Normal View History

2025-02-25 01:43:18 -05:00
val task = tasks.register<Exec>("default") {
commandLine("cargo", "build", "--release")
val library = System.mapLibraryName("golem_computers")
2025-03-23 22:33:38 -04:00
val libraryPath = "$workingDir/../target/release/$library"
2025-02-25 01:43:18 -05:00
outputs.file(libraryPath)
inputs.dir("$workingDir/src")
doLast {
if (!file(libraryPath).exists()) {
2025-03-23 22:33:38 -04:00
throw GradleException("the library wasn't properly built! expected $libraryPath")
2025-02-25 01:43:18 -05:00
}
}
}
configurations {
2025-03-23 22:33:38 -04:00
create("default")
2025-02-25 01:43:18 -05:00
}
artifacts.add("default", task)