From b4eb3884a53378919bde40b0472d469d1d294550 Mon Sep 17 00:00:00 2001 From: Zacharias Date: Sun, 18 May 2025 16:33:34 +0200 Subject: [PATCH] Add initial Quilt submodule config MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - Added missing `gradle.properties` for the `:quilt` module - Added `include("quilt")` to `settings.gradle` Not sure what this setup really does beyond setting Loom's platform to Quilt. This doesn't currently build — possibly due to: A) Missing support, or B) Me doing something wrong. This branch might be dead, but at least this stuff is tracked now. Best regards, my future self (if I ever come back to this) --- quilt/gradle.properties | 1 + settings.gradle | 3 ++- 2 files changed, 3 insertions(+), 1 deletion(-) create mode 100644 quilt/gradle.properties diff --git a/quilt/gradle.properties b/quilt/gradle.properties new file mode 100644 index 0000000..96758ce --- /dev/null +++ b/quilt/gradle.properties @@ -0,0 +1 @@ +loom.platform=quilt \ No newline at end of file diff --git a/settings.gradle b/settings.gradle index bf7b484..7f3e9b8 100644 --- a/settings.gradle +++ b/settings.gradle @@ -9,4 +9,5 @@ pluginManagement { include("common") include("fabric") -include("neoforge") \ No newline at end of file +include("neoforge") +include("quilt") \ No newline at end of file