net.freudasoft.gradle-cmake-plugin
Owner: Marco Freudenberger
Plugin to use Cmake from Gradle
https://github.com/freudi74/gradle-cmake-plugin
Sources: https://github.com/freudi74/gradle-cmake-plugin
Add this plugin to your build using the plugins DSL:
plugins {
id("net.freudasoft.gradle-cmake-plugin") version "0.0.4"
}
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("net.freudasoft.gradle-cmake-plugin:net.freudasoft.gradle-cmake-plugin.gradle.plugin:0.0.4") }
It can then be applied in the precompiled script plugin:plugins { id("net.freudasoft.gradle-cmake-plugin") }
-
The legacy method of plugin application.
See the relevant documentation for more information.buildscript { repositories { gradlePluginPortal() } dependencies { classpath("net.freudasoft.gradle-cmake-plugin:net.freudasoft.gradle-cmake-plugin.gradle.plugin:0.0.4") } } apply(plugin = "net.freudasoft.gradle-cmake-plugin")
- Applying plugins to all subprojects .