2024-10-28 02:05:12 +01:00
|
|
|
plugins {
|
|
|
|
id("org.gradle.toolchains.foojay-resolver-convention") version "0.8.0"
|
|
|
|
}
|
|
|
|
rootProject.name = "ZigBrains"
|
|
|
|
|
2024-11-02 23:08:57 +01:00
|
|
|
for (module in arrayOf("core")) {
|
2024-10-29 23:20:12 +01:00
|
|
|
include(module)
|
|
|
|
project(":$module").projectDir = file("modules/$module")
|
|
|
|
}
|