Skip to content

Building

ExodusCoder9 edited this page Jun 20, 2026 · 1 revision

Requirements

  • JDK 26+
  • Gradle 8.x+ (wrapper included)

Commands

# Build math-core
./gradlew :math-core:build

# Build math-incubator (requires --enable-preview)
./gradlew :math-incubator:build

# Build lwjgl-jamma
./gradlew :lwjgl-jamma:build

# Build everything
./gradlew build

# Run all tests
./gradlew test
JVM flags for incubator module
--add-modules jdk.incubator.vector --enable-preview
Running tests
# Single module tests
./gradlew :math-core:test
./gradlew :math-incubator:test
./gradlew :lwjgl-jamma:test

# All tests
./gradlew test

Clone this wiki locally