plugins { `jni-library` } fun DependencyHandlerScope.javaImplementation(dep: Any) { compileOnly(dep) runtimeOnly(dep) } dependencies { javaImplementation(project(":darklaf-native-utils")) 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() } ) } }