diff --git a/settings.gradle.kts b/settings.gradle.kts index 3400ac93..874d1fa8 100644 --- a/settings.gradle.kts +++ b/settings.gradle.kts @@ -27,9 +27,11 @@ pluginManagement { } include("common") -include("fabric") -include("forge") -include("neoforge") + +val enabledPlatforms: String by settings +for (enabledPlatform in enabledPlatforms.split(",")) { + include(enabledPlatform) +} val modId: String by settings rootProject.name = modId