Skip to content

Commit 94be486

Browse files
committed
build: Add include_fabric and include_forge property
1 parent 80ff5ee commit 94be486

2 files changed

Lines changed: 10 additions & 1 deletion

File tree

gradle.properties

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -45,4 +45,7 @@ cloth_config_version=9.0.94
4545
# Gradle
4646
org.gradle.jvmargs=-Xmx3G
4747
org.gradle.daemon=false
48+
49+
include_forge=true
50+
include_fabric=true
4851
org.gradle.parallel=false

settings.gradle

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,4 +12,10 @@ pluginManagement {
1212
}
1313
}
1414

15-
include("common", "fabric", "forge")
15+
include("common")
16+
if (include_fabric) {
17+
include("fabric")
18+
}
19+
if (include_forge) {
20+
include("forge")
21+
}

0 commit comments

Comments
 (0)