2024-04-01

This commit is contained in:
2024-04-01 20:11:09 +09:00
parent a2349837be
commit c4291c2746
26 changed files with 464 additions and 34 deletions

30
three_d/build.gradle.kts Normal file
View File

@@ -0,0 +1,30 @@
plugins {
id("elex-application")
idea
id("org.openjfx.javafxplugin") version "0.1.0"
id("org.beryx.jlink") version "3.0.1"
}
application {
mainClass.set("kr.pe.elex.examples.three_d.MyApplication")
// mainModule.set("kr.pe.elex.examples.components")
}
javafx {
version = "23-ea+3"
modules = listOf("javafx.controls", "javafx.fxml")
}
jlink {
launcher {
name = project.name
}
}
idea{
module {
isDownloadJavadoc=true
isDownloadSources=true
}
}
dependencies {
}