Search Gradle plugins

dev.guillermo.gradle.c-unit-test

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.

Add this plugin to your build using the plugins DSL:

plugins {
  id("dev.guillermo.gradle.c-unit-test") version "0.5.0"
}

See also:

  • The legacy method of plugin application.
    buildscript {
      repositories {
        gradlePluginPortal()
      }
      dependencies {
        classpath("dev.guillermo.gradle:gradle-plugin-c-language:0.5.0")
      }
    }
    
    apply(plugin = "dev.guillermo.gradle.c-unit-test")
  • Applying plugins to all subprojects .