mirror of
https://github.com/processing/processing4.git
synced 2026-06-16 04:26:26 +02:00
11 lines
430 B
Kotlin
11 lines
430 B
Kotlin
plugins {
|
|
kotlin("jvm") version libs.versions.kotlin apply false
|
|
alias(libs.plugins.kotlinMultiplatform) apply false
|
|
|
|
alias(libs.plugins.compose.compiler) apply false
|
|
alias(libs.plugins.jetbrainsCompose) apply false
|
|
}
|
|
|
|
// Set the build directory to not /build to prevent accidental deletion through the clean action
|
|
// Can be deleted after the migration to Gradle is complete
|
|
layout.buildDirectory = file(".build") |