Skip to content

Commit

Permalink
restored module-info.java
Browse files Browse the repository at this point in the history
  • Loading branch information
elect86 committed May 27, 2020
1 parent 1532495 commit 958b52b
Showing 1 changed file with 48 additions and 0 deletions.
48 changes: 48 additions & 0 deletions src/main/java/module-info.java
Original file line number Diff line number Diff line change
@@ -0,0 +1,48 @@
module com.github.kotlin_graphics.glm {

requires kotlin.stdlib;

requires org.lwjgl;

// requires com.github.kotlin_graphics.kool;

requires java.desktop;
requires com.github.kotlin_graphics.kotlin_unsigned;
requires com.github.kotlin_graphics.kool;

exports glm_;
exports glm_.detail;
exports glm_.dualQuat;
exports glm_.func;
exports glm_.func.common;
exports glm_.gtc;
exports glm_.ext;
exports glm_.gtx;
exports glm_.mat2x2;
exports glm_.mat2x2.operators;
exports glm_.mat2x3;
// exports glm_.mat2x3.operators;
exports glm_.mat2x4;
// exports glm_.mat2x4.operators;
exports glm_.mat3x2;
// exports glm_.mat3x2.operators;
exports glm_.mat3x3;
exports glm_.mat3x3.operators;
exports glm_.mat3x4;
// exports glm_.mat3x4.operators;
exports glm_.mat4x2;
// exports glm_.mat4x2.operators;
exports glm_.mat4x3;
// exports glm_.mat4x3.operators;
exports glm_.mat4x4;
exports glm_.mat4x4.operators;
exports glm_.quat;
exports glm_.vec1;
exports glm_.vec1.operators;
exports glm_.vec2;
exports glm_.vec2.operators;
exports glm_.vec3;
exports glm_.vec3.operators;
exports glm_.vec4;
exports glm_.vec4.operators;
}

0 comments on commit 958b52b

Please sign in to comment.