Search Gradle plugins

dev.welbyseely.gradle-cmake-plugin

Plugin to seamlessly integrate Cmake with Gradle, forked from https://github.com/freudi74/gradle-cmake-plugin due to unmaintained status

https://github.com/crimsonmagick/gradle-cmake-plugin

Sources: https://github.com/crimsonmagick/gradle-cmake-plugin

Version 0.1.0 (latest)

Created 15 October 2023.

Plugin to seamlessly integrate Cmake with Gradle

Using the plugins DSL:

plugins {
  id("dev.welbyseely.gradle-cmake-plugin") version "0.1.0"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org/m2/")
    }
  }
  dependencies {
    classpath("dev.welbyseely:gradle-cmake-plugin:0.1.0")
  }
}

apply(plugin = "dev.welbyseely.gradle-cmake-plugin")

Using the plugins DSL:

plugins {
  id "dev.welbyseely.gradle-cmake-plugin" version "0.1.0"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org/m2/"
    }
  }
  dependencies {
    classpath "dev.welbyseely:gradle-cmake-plugin:0.1.0"
  }
}

apply plugin: "dev.welbyseely.gradle-cmake-plugin"

Learn how to apply plugins to subprojects