dev.welbyseely.gradle-cmake-plugin
Owner: Welby Seely
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)
0.1.0
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"