Search Gradle plugins

Version 0.0.5 (latest)

0.0.5

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:

  • The legacy method of plugin application.
    buildscript {
      repositories {
        gradlePluginPortal()
      }
      dependencies {
        classpath("me.walkerknapp:gradle-use-cmake-library:0.0.5")
      }
    }
    
    apply(plugin = "me.walkerknapp.use-cmake-library")
  • Applying plugins to all subprojects .