Initial commit

This commit is contained in:
2025-09-29 01:43:17 +08:00
commit 18c0e54926
15 files changed
+750

No files matched your search

+28
View File
@@ -0,0 +1,28 @@
plugins {
kotlin("multiplatform") version "2.2.10"
}
group = "cn.rtast.nmdns"
version = "1.0-SNAPSHOT"
repositories {
mavenCentral()
}
kotlin {
linuxArm64()
linuxX64()
mingwX64()
macosArm64()
jvm()
sourceSets {
commonMain.dependencies {
implementation("io.ktor:ktor-network:3.2.3")
}
commonTest.dependencies {
implementation(kotlin("test"))
}
}
}