mirror of https://github.com/weisJ/darklaf.git
darculadarcula-themefeelguihacktoberfestintellijintellij-themelaflooklookandfeelnativesolarizedsolarized-dark-themesolarized-light-themesvgswingthemethemes
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.
29 lines
810 B
29 lines
810 B
5 years ago
|
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-decorations-base"))
|
||
|
javaImplementation(project(":darklaf-property-loader"))
|
||
|
}
|
||
|
|
||
|
library {
|
||
|
targetMachines.addAll(machines.macOS.x86_64)
|
||
|
binaries.configureEach {
|
||
|
compileTask.get().let {
|
||
|
it.compilerArgs.addAll(listOf("-x", "objective-c++"))
|
||
|
it.source.from(file("src/main/objectiveCpp/JNIDecorations.mm"))
|
||
|
}
|
||
|
}
|
||
|
binaries.whenElementFinalized(CppSharedLibrary::class) {
|
||
|
linkTask.get().linkerArgs.addAll(listOf("-lobjc", "-framework", "AppKit"))
|
||
|
}
|
||
|
}
|