-
Notifications
You must be signed in to change notification settings - Fork 0
Building
ExodusCoder9 edited this page Jun 20, 2026
·
1 revision
- JDK 26+
- Gradle 8.x+ (wrapper included)
# 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