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.
37 lines
1.1 KiB
37 lines
1.1 KiB
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-platform-base")) |
|
javaImplementation(project(":darklaf-theme")) |
|
javaImplementation(project(":darklaf-property-loader")) |
|
} |
|
|
|
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", "-ladvapi32") |
|
is VisualCpp -> listOf("dwmapi.lib", "user32.lib", "Gdi32.lib", "Advapi32.lib") |
|
else -> emptyList() |
|
} |
|
) |
|
} |
|
}
|
|
|