Skip to content

Commit

Permalink
Changed native modules to requires static
Browse files Browse the repository at this point in the history
  • Loading branch information
Штенгауэр Никита Дмитриевич committed Dec 26, 2024
1 parent 61b10d7 commit eedacd8
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 4 deletions.
2 changes: 1 addition & 1 deletion gradle.properties
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
projectName=grapl
version=2.3.8
version=2.3.9

# Versions
kotlinVersion=2.0.0
Expand Down
4 changes: 3 additions & 1 deletion modules/core/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,9 @@ moduleInfo {
name = projectName

requiresTransitive = [
"kotlin.stdlib",
"kotlin.stdlib"
]
requiresStatic = [
"grapl.natives.core.win",
"grapl.natives.core.macos",
"grapl.natives.core.linux"
Expand Down
2 changes: 1 addition & 1 deletion modules/core/kotlin/com/huskerdev/grapl/GraplInfo.kt
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,6 @@ package com.huskerdev.grapl
// Generated with gradle
class GraplInfo {
companion object {
const val VERSION = "2.3.8"
const val VERSION = "2.3.9"
}
}
4 changes: 3 additions & 1 deletion modules/gl/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,9 @@ moduleInfo {
name = "${projectName}.gl"

requiresTransitive = [
"grapl",
"grapl"
]
requiresStatic = [
"grapl.natives.gl.win",
"grapl.natives.gl.macos",
"grapl.natives.gl.linux"
Expand Down

0 comments on commit eedacd8

Please sign in to comment.