Skip to content

Commit

Permalink
Merge remote-tracking branch 'origin/QuestCraft' into QuestCraft
Browse files Browse the repository at this point in the history
  • Loading branch information
The Judge committed Sep 15, 2024
2 parents f6b7787 + fda61f9 commit 1a930a7
Show file tree
Hide file tree
Showing 42 changed files with 14,135 additions and 13 deletions.
33 changes: 33 additions & 0 deletions jre_lwjgl3glfw/build.gradle
Original file line number Diff line number Diff line change
@@ -0,0 +1,33 @@
plugins {
id 'java'
}

group = 'org.lwjgl.glfw'

configurations.default.setCanBeResolved(true)

jar {
duplicatesStrategy = DuplicatesStrategy.EXCLUDE
archiveBaseName = "lwjgl-glfw-classes"
destinationDirectory.set(file("../src/main/assets/lwjgl/"))
// Auto update the version with a timestamp so the project jar gets updated by Pojav
File versionFile = file("../src/main/assets/lwjgl/version")
versionFile.write(String.valueOf(new Date().getTime()))
from {
configurations.default.collect {
println(it.getName())
it.isDirectory() ? it : zipTree(it)
}
}
exclude 'net/java/openjdk/cacio/ctc/**'
}

java {
toolchain {
languageVersion = JavaLanguageVersion.of(8)
}
}

dependencies {
implementation fileTree(dir: 'libs', include: ['*.jar'])
}
Binary file added jre_lwjgl3glfw/libs/jsr305.jar
Binary file not shown.
Binary file added jre_lwjgl3glfw/libs/lwjgl-freetype.jar
Binary file not shown.
Binary file added jre_lwjgl3glfw/libs/lwjgl-glfw.jar
Binary file not shown.
Binary file added jre_lwjgl3glfw/libs/lwjgl-jemalloc.jar
Binary file not shown.
Binary file added jre_lwjgl3glfw/libs/lwjgl-lwjglx.jar
Binary file not shown.
Binary file added jre_lwjgl3glfw/libs/lwjgl-nanovg.jar
Binary file not shown.
Binary file added jre_lwjgl3glfw/libs/lwjgl-openal.jar
Binary file not shown.
Binary file added jre_lwjgl3glfw/libs/lwjgl-opengl.jar
Binary file not shown.
Binary file added jre_lwjgl3glfw/libs/lwjgl-openvr.jar
Binary file not shown.
Binary file added jre_lwjgl3glfw/libs/lwjgl-stb.jar
Binary file not shown.
Binary file added jre_lwjgl3glfw/libs/lwjgl-tinyfd.jar
Binary file not shown.
Binary file added jre_lwjgl3glfw/libs/lwjgl.jar
Binary file not shown.
Loading

0 comments on commit 1a930a7

Please sign in to comment.