io.github.tomtzook.gradle-cmake
Owner: Tom Tzook
Integration for CMake projects with Gradle
https://github.com/tomtzook/gradle-cmake
Sources: https://github.com/tomtzook/gradle-cmake
Version 1.2.2 (latest)
1.2.2
Created 28 November 2022.
Integration for CMake projects with Gradle
Using the plugins DSL:
plugins {
id("io.github.tomtzook.gradle-cmake") version "1.2.2"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("io.github.tomtzook:plugin:1.2.2")
}
}
apply(plugin = "io.github.tomtzook.gradle-cmake")
Using the plugins DSL:
plugins {
id "io.github.tomtzook.gradle-cmake" version "1.2.2"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "io.github.tomtzook:plugin:1.2.2"
}
}
apply plugin: "io.github.tomtzook.gradle-cmake"