Files
libmc/settings.gradle.kts
T

19 lines
585 B
Kotlin
Raw Normal View History

2026-09-03 19:32:46 +08:00
plugins {
id("org.gradle.toolchains.foojay-resolver-convention") version "0.8.0"
}
2026-09-07 03:15:53 +08:00
2026-09-04 15:21:22 +08:00
rootProject.name = "libmc"
2026-09-04 00:19:17 +08:00
includeSubModule("common")
includeSubModule("protocol")
includeSubModule("protocol-context")
includeSubModule("nbt")
2026-09-08 12:23:55 +08:00
//includeSubModule("snbt")
//includeSubModule("protocol-engine-netty", path = "libmc-network-engines/netty")
//includeSubModule("protocol-engine-ktor-network", path = "libmc-network-engines/ktor-network")
fun includeSubModule(name: String, path: String? = null) {
include(":$name")
project(":$name").projectDir = file(path ?: "libmc-$name")
}