dev.guillermo.gradle.c-unit-test
Owner: Guillermo Calvo
A plugin that sets up the infrastructure for testing C binaries using a simple test executable.
https://guillermo.dev/gradle-plugin-c-language/
Sources: https://github.com/guillermocalvo/gradle-plugin-c-language
Version 0.5.0 (latest)
0.5.0
Created 05 November 2024.
A plugin that sets up the infrastructure for testing C binaries using a simple test executable.
Using the plugins DSL:
plugins {
id("dev.guillermo.gradle.c-unit-test") version "0.5.0"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("dev.guillermo.gradle:gradle-plugin-c-language:0.5.0")
}
}
apply(plugin = "dev.guillermo.gradle.c-unit-test")
Using the plugins DSL:
plugins {
id "dev.guillermo.gradle.c-unit-test" version "0.5.0"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "dev.guillermo.gradle:gradle-plugin-c-language:0.5.0"
}
}
apply plugin: "dev.guillermo.gradle.c-unit-test"