Darklaf - A themeable swing Look and Feel based on Darcula-Laf
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
|
|
plugins {
|
|
|
|
`jni-library`
|
|
|
|
}
|
|
|
|
|
|
|
|
fun DependencyHandlerScope.javaImplementation(dep: Any) {
|
|
|
|
compileOnly(dep)
|
|
|
|
runtimeOnly(dep)
|
|
|
|
}
|
|
|
|
|
|
|
|
dependencies {
|
|
|
|
javaImplementation(project(":darklaf-native-utils"))
|
|
|
|
javaImplementation(project(":darklaf-utils"))
|
|
|
|
javaImplementation(project(":darklaf-property-loader"))
|
|
|
|
javaImplementation("net.java.dev.jna:jna")
|
|
|
|
}
|
|
|
|
|
|
|
|
library {
|
|
|
|
targetMachines.addAll(machines.windows.x86, machines.windows.x86_64)
|
|
|
|
binaries.configureEach {
|
|
|
|
compileTask.get().compilerArgs.addAll(
|
|
|
|
when (toolChain) {
|
|
|
|
is Gcc, is Clang, is VisualCpp -> listOf("--std=c++11")
|
|
|
|
else -> emptyList()
|
|
|
|
}
|
|
|
|
)
|
|
|
|
}
|
|
|
|
binaries.whenElementFinalized(CppSharedLibrary::class) {
|
|
|
|
linkTask.get().linkerArgs.addAll(
|
|
|
|
when (toolChain) {
|
|
|
|
is Gcc, is Clang -> listOf("-ldwmapi", "-lGdi32", "-luser32")
|
|
|
|
is VisualCpp -> listOf("dwmapi.lib", "user32.lib", "Gdi32.lib")
|
|
|
|
else -> emptyList()
|
|
|
|
}
|
|
|
|
)
|
|
|
|
}
|
|
|
|
}
|