Skip to content

Commit

Permalink
feat: add JOML Primitives addon
Browse files Browse the repository at this point in the history
  • Loading branch information
Spasi committed Apr 3, 2024
1 parent 80799a4 commit 5a3584e
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 1 deletion.
13 changes: 12 additions & 1 deletion client/routes/customize/config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -222,13 +222,24 @@ function getInitialConfig(): BuildStore {
id: Addon.JOML,
title: 'JOML',
description: 'A Java math library for OpenGL rendering calculations.',
website: 'http://joml-ci.github.io/JOML/',
website: 'https://joml-ci.github.io/JOML/',
maven: {
groupId: 'org.joml',
artifactId: 'joml',
version: '1.10.5',
},
},
[Addon.JOMLPrimitives]: {
id: Addon.JOMLPrimitives,
title: 'JOML Primitives',
description: 'JOML geometric primitives',
website: 'https://github.com/JOML-CI/joml-primitives',
maven: {
groupId: 'org.joml',
artifactId: 'joml-primitives',
version: '1.10.0',
},
},
[Addon.LWJGLXDebug]: {
id: Addon.LWJGLXDebug,
title: 'LWJGLX/debug',
Expand Down
1 change: 1 addition & 0 deletions client/routes/customize/types.ts
Original file line number Diff line number Diff line change
Expand Up @@ -72,6 +72,7 @@ export enum Binding {

export enum Addon {
JOML = 'joml',
JOMLPrimitives = 'joml-primitives',
LWJGLXDebug = 'lwjglx-debug',
LWJGLXLWJGL3Awt = 'lwjgl3-awt',
Steamworks4J = 'steamworks4j',
Expand Down

0 comments on commit 5a3584e

Please sign in to comment.