搜索 Gradle 插件

版本 0.0.4 (最新版)

0.0.4

创建于 2019 年 7 月 13 日。

插件使用 Gradle 调用 Cmake

使用 plugins DSL

plugins {
  id("net.freudasoft.gradle-cmake-plugin") version "0.0.4"
}

使用 旧插件应用

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org.cn/m2/")
    }
  }
  dependencies {
    classpath("net.freudasoft:gradle-cmake-plugin:0.0.4")
  }
}

apply(plugin = "net.freudasoft.gradle-cmake-plugin")

使用 plugins DSL

plugins {
  id "net.freudasoft.gradle-cmake-plugin" version "0.0.4"
}

使用 旧插件应用

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org.cn/m2/"
    }
  }
  dependencies {
    classpath "net.freudasoft:gradle-cmake-plugin:0.0.4"
  }
}

apply plugin: "net.freudasoft.gradle-cmake-plugin"

了解如何将插件应用到子项目中