mirror of
https://github.com/HMCL-dev/HMCL.git
synced 2025-03-31 18:10:26 +08:00
Fix build on JDK without JavaFX
This commit is contained in:
parent
3a1f7a13a1
commit
65d4c9c8ee
@ -2,10 +2,6 @@ plugins {
|
||||
id("checkstyle")
|
||||
}
|
||||
|
||||
apply {
|
||||
from("javafx.gradle.kts")
|
||||
}
|
||||
|
||||
group = "org.jackhuang"
|
||||
version = "3.0"
|
||||
|
||||
@ -95,4 +91,8 @@ tasks.create("checkTranslations") {
|
||||
}
|
||||
}
|
||||
|
||||
apply {
|
||||
from("javafx.gradle.kts")
|
||||
}
|
||||
|
||||
defaultTasks("clean", "build")
|
||||
|
@ -52,7 +52,7 @@ val jfxInClasspath =
|
||||
if (!jfxInClasspath && JavaVersion.current() >= JavaVersion.VERSION_11) {
|
||||
val os = System.getProperty("os.name").toLowerCase().let { osName ->
|
||||
when {
|
||||
osName.contains("win") -> "win"
|
||||
osName.contains("win") -> "windows"
|
||||
osName.contains("mac") -> "osx"
|
||||
osName.contains("linux") || osName.contains("unix") -> "linux"
|
||||
else -> null
|
||||
@ -67,7 +67,7 @@ if (!jfxInClasspath && JavaVersion.current() >= JavaVersion.VERSION_11) {
|
||||
}
|
||||
|
||||
if (os != null && arch != null) {
|
||||
val platform = jfxPlatforms.find { it.name == "$os-arch" }
|
||||
val platform = jfxPlatforms.find { it.name == "$os-$arch" }
|
||||
if (platform != null) {
|
||||
val groupId = platform.groupId
|
||||
val version = platform.version
|
||||
|
Loading…
x
Reference in New Issue
Block a user