Rename build scripts: build -> root and common -> build

This way it's easier for people not familiar with the preprocessor setup to find
what they are looking for.
This commit is contained in:
Jonas Herzig
2021-02-16 23:35:45 +01:00
parent 7e5734067f
commit d8cae487c2
4 changed files with 5 additions and 3 deletions

2
jGui

Submodule jGui updated: 6fbb476dfe...2b16c9ea1c

View File

@@ -48,6 +48,8 @@ val replayModVersions = listOf(
"1.16.4" "1.16.4"
) )
rootProject.buildFileName = "root.gradle.kts"
include(":jGui") include(":jGui")
project(":jGui").apply { project(":jGui").apply {
projectDir = file("jGui") projectDir = file("jGui")
@@ -57,7 +59,7 @@ jGuiVersions.forEach { version ->
include(":jGui:$version") include(":jGui:$version")
project(":jGui:$version").apply { project(":jGui:$version").apply {
projectDir = file("jGui/versions/$version") projectDir = file("jGui/versions/$version")
buildFileName = "../common.gradle" buildFileName = "../../build.gradle"
} }
} }
@@ -65,6 +67,6 @@ replayModVersions.forEach { version ->
include(":$version") include(":$version")
project(":$version").apply { project(":$version").apply {
projectDir = file("versions/$version") projectDir = file("versions/$version")
buildFileName = "../common.gradle" buildFileName = "../../build.gradle"
} }
} }