94 lines
3.1 KiB
Groovy
94 lines
3.1 KiB
Groovy
/*
|
|
* STAROPENSOURCE ENGINE SOURCE FILE
|
|
* Copyright (c) 2024 The StarOpenSource Engine Contributors
|
|
* Licensed under the GNU Affero General Public License v3
|
|
*
|
|
* This program is free software: you can redistribute it and/or modify
|
|
* it under the terms of the GNU Affero General Public License as
|
|
* published by the Free Software Foundation, either version 3 of the
|
|
* License, or (at your option) any later version.
|
|
*
|
|
* This program is distributed in the hope that it will be useful,
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
* GNU Affero General Public License for more details.
|
|
*
|
|
* You should have received a copy of the GNU Affero General Public License
|
|
* along with this program. If not, see <https://www.gnu.org/licenses/>.
|
|
*/
|
|
|
|
plugins {
|
|
id("java")
|
|
id "application"
|
|
id("io.freefair.lombok") version("${pluginLombok}")
|
|
id("io.github.goooler.shadow") version("${pluginShadow}")
|
|
id('org.mikeneck.graalvm-native-image') version('v1.4.0')
|
|
}
|
|
|
|
dependencies {
|
|
// -> Runtime <-
|
|
// Lombok
|
|
compileOnly("org.projectlombok:lombok:${dependencyLombok}")
|
|
annotationProcessor("org.projectlombok:lombok:${dependencyLombok}")
|
|
|
|
// JetBrains Annotations
|
|
compileOnly("org.jetbrains:annotations:${dependencyJetbrainsAnnotations}")
|
|
|
|
// -> Project <-
|
|
implementation(project(":base"))
|
|
implementation(project(":slf4j-compat"))
|
|
implementation(project(":graphics"))
|
|
implementation project(":graphics:vulkan")
|
|
implementation project(":graphics:opengl")
|
|
implementation("org.fusesource.jansi:jansi:${dependencyJansi}") // for some reason required or the build fails don"t ask me why
|
|
}
|
|
|
|
javadoc.options {
|
|
setMemberLevel(JavadocMemberLevel.PUBLIC)
|
|
setOverview("src/main/javadoc/overview.html")
|
|
setLocale("en_US")
|
|
setJFlags([
|
|
// Force Javadoc to use English translations
|
|
"-Duser.language=en_US"
|
|
])
|
|
}
|
|
|
|
jar {
|
|
manifest {
|
|
attributes(
|
|
"Main-Class": "de.staropensource.sosengine.testapp.Main"
|
|
)
|
|
}
|
|
}
|
|
|
|
application {
|
|
mainClass.set("de.staropensource.sosengine.testapp.Main")
|
|
applicationDefaultJvmArgs = [
|
|
// Set log level to DIAGNOSTIC
|
|
"-Dsosengine.base.loggerLevel=diagnostic",
|
|
|
|
// Force writing to standard output
|
|
"-Dsosengine.base.loggerForceStandardOutput=true",
|
|
|
|
// Force Jansi to write escape sequences
|
|
"-Djansi.mode=force",
|
|
]
|
|
}
|
|
|
|
nativeImage {
|
|
graalVmHome = project.hasProperty("graalHome") ? project.property("graalHome") as String : System.getProperty("java.home")
|
|
mainClass = "de.staropensource.sosengine.testapp.Main"
|
|
executableName = "sosengine-testapp"
|
|
outputDirectory = file("build/bin")
|
|
arguments {
|
|
"--no-fallback"
|
|
"--enable-all-security-services"
|
|
"--report-unsupported-elements-at-runtime"
|
|
}
|
|
}
|
|
|
|
tasks.register('runNativeimage', Exec) {
|
|
dependsOn(nativeImage)
|
|
executable("build/bin/sosengine-testapp")
|
|
args = application.applicationDefaultJvmArgs
|
|
}
|