me.walkerknapp.use-cmake-library
Owner: Walker Knapp
A gradle plugin to use any installable CMake library in the native plugins ecosystem.
https://github.com/WalkerKnapp/gradle-use-cmake-library
Sources: https://github.com/WalkerKnapp/gradle-use-cmake-library
Version 0.0.5 (latest)
Created 22 July 2021.
A gradle plugin to use any installable CMake library in the native plugins ecosystem.
Add this plugin to your build using the plugins DSL:
plugins {
id("me.walkerknapp.use-cmake-library") version "0.0.5"
}
See also:
-
Adding the plugin to build logic for usage in precompiled script plugins.
See the relevant documentation for more information.
Add this plugin as a dependency to
<convention-plugins-build>/build.gradle(.kts)
:dependencies { implementation("me.walkerknapp.use-cmake-library:me.walkerknapp.use-cmake-library.gradle.plugin:0.0.5") }
It can then be applied in the precompiled script plugin:plugins { id("me.walkerknapp.use-cmake-library") }
-
The legacy method of plugin application.
See the relevant documentation for more information.buildscript { repositories { gradlePluginPortal() } dependencies { classpath("me.walkerknapp.use-cmake-library:me.walkerknapp.use-cmake-library.gradle.plugin:0.0.5") } } apply(plugin = "me.walkerknapp.use-cmake-library")
- Applying plugins to all subprojects .