added os specific dependency for linux

This commit is contained in:
ikeen0807 2024-05-24 17:35:43 +02:00
parent 0b9119222b
commit ca6239fb79
43 changed files with 904 additions and 0 deletions

View file

@ -0,0 +1,23 @@
plugins {
`kotlin-dsl`
}
gradlePlugin {
plugins {
create("pluginsForCoolKids") {
id = "rust"
implementationClass = "RustPlugin"
}
}
}
repositories {
google()
mavenCentral()
}
dependencies {
compileOnly(gradleApi())
implementation("com.android.tools.build:gradle:8.0.0")
}