Skip to content

Commit

Permalink
Co-Build GLFW
Browse files Browse the repository at this point in the history
Co-Authored-By: Maksim Belov <[email protected]>
Co-Authored-By: Mathias Boulay <[email protected]>
  • Loading branch information
3 people committed Sep 9, 2024
1 parent 6bb7112 commit e95214a
Show file tree
Hide file tree
Showing 38 changed files with 14,101 additions and 1 deletion.
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 e95214a

Please sign in to comment.