mirror of
https://github.com/apple/pkl.git
synced 2026-04-23 00:38:37 +02:00
12 lines
232 B
Kotlin
12 lines
232 B
Kotlin
val assembleNative by tasks.registering {}
|
|
|
|
val testNative by tasks.registering {}
|
|
|
|
val checkNative by tasks.registering {
|
|
dependsOn(testNative)
|
|
}
|
|
|
|
val buildNative by tasks.registering {
|
|
dependsOn(assembleNative, checkNative)
|
|
}
|