mirror of
https://github.com/InsanusMokrassar/TelegramBotAPI-examples.git
synced 2025-10-09 09:20:03 +00:00
update native buildings configuration
This commit is contained in:
@@ -12,26 +12,9 @@ plugins {
|
||||
id "org.jetbrains.kotlin.multiplatform"
|
||||
}
|
||||
|
||||
apply from: "$nativePartTemplate"
|
||||
|
||||
kotlin {
|
||||
def hostOs = System.getProperty("os.name")
|
||||
def isMingwX64 = hostOs.startsWith("Windows")
|
||||
def isArch64 = System.getProperty("os.arch") == "aarch64"
|
||||
def nativeTarget
|
||||
if (hostOs == "Linux") {
|
||||
if (isArch64) {
|
||||
nativeTarget = linuxArm64("native") { binaries { executable() } }
|
||||
} else {
|
||||
nativeTarget = linuxX64("native") { binaries { executable() } }
|
||||
}
|
||||
} else {
|
||||
if (isMingwX64) {
|
||||
nativeTarget = mingwX64("native") { binaries { executable() } }
|
||||
} else {
|
||||
throw new GradleException("Host OS is not supported in Kotlin/Native.")
|
||||
}
|
||||
}
|
||||
|
||||
sourceSets {
|
||||
commonMain {
|
||||
dependencies {
|
||||
@@ -40,18 +23,6 @@ kotlin {
|
||||
api project(":ResenderBot:ResenderBotLib")
|
||||
}
|
||||
}
|
||||
|
||||
nativeMain {
|
||||
dependencies {
|
||||
def engine
|
||||
|
||||
if (hostOs == "Linux") engine = "curl"
|
||||
else if (isMingwX64) engine = "winhttp"
|
||||
else throw new GradleException("Host OS is not supported in Kotlin/Native.")
|
||||
|
||||
api "io.ktor:ktor-client-$engine:$ktor_version"
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
|
Reference in New Issue
Block a user