Skip to content

Commit

Permalink
fix(arm64): lwjgl for macOS-arm64, protoc 3.17.0 -> 3.22.0
Browse files Browse the repository at this point in the history
Co-authored-by: priya4991 <[email protected]>
  • Loading branch information
priya4991 and priya4991 authored Feb 18, 2024
1 parent 397652e commit ae83461
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -81,7 +81,7 @@ val codeMetrics = configurations.create("codeMetrics")
dependencies {
// For the "natives" configuration make it depend on the native files from LWJGL
natives(platform("org.lwjgl:lwjgl-bom:$LwjglVersion"))
listOf("natives-linux", "natives-windows", "natives-macos").forEach {
listOf("natives-linux", "natives-windows", "natives-macos", "natives-macos-arm64").forEach {
natives("org.lwjgl:lwjgl::$it")
natives("org.lwjgl:lwjgl-assimp::$it")
natives("org.lwjgl:lwjgl-glfw::$it")
Expand Down
4 changes: 2 additions & 2 deletions engine/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,7 @@ dependencies {
api("com.google.code.gson:gson:2.8.6")
api("net.sf.trove4j:trove4j:3.0.3")
implementation("io.netty:netty-all:4.1.77.Final")
implementation("com.google.protobuf:protobuf-java:3.16.1")
implementation("com.google.protobuf:protobuf-java:3.22.0")
implementation("org.lz4:lz4-java:1.8.0")
implementation("org.apache.httpcomponents:httpclient:4.5.13")
// Javax for protobuf due to @Generated - needed on Java 9 or newer Javas
Expand Down Expand Up @@ -158,7 +158,7 @@ dependencies {

protobuf {
protoc {
artifact = "com.google.protobuf:protoc:3.17.0"
artifact = "com.google.protobuf:protoc:3.22.0"
}
plugins {
}
Expand Down

0 comments on commit ae83461

Please sign in to comment.