mirror of
https://github.com/InsanusMokrassar/MicroUtils.git
synced 2026-08-31 13:36:45 +00:00
24 lines
539 B
Groovy
24 lines
539 B
Groovy
plugins {
|
|
id "org.jetbrains.kotlin.multiplatform"
|
|
id "org.jetbrains.kotlin.plugin.serialization"
|
|
id "com.android.kotlin.multiplatform.library"
|
|
}
|
|
|
|
apply from: "$mppJvmJsWasmJsAndroidLinuxMingwLinuxArm64Project"
|
|
|
|
kotlin {
|
|
sourceSets {
|
|
commonMain {
|
|
dependencies {
|
|
api project(":micro_utils.common")
|
|
api libs.krypto
|
|
}
|
|
}
|
|
jsMain {
|
|
dependencies {
|
|
api npm("crypto-js", "$crypto_js_version")
|
|
}
|
|
}
|
|
}
|
|
}
|