dev.guillermo.gradle.c-application
                  Owner:
                  
                    
                    Guillermo Calvo
                  
                
A plugin that produces a native application from C source
https://guillermo.dev/gradle-plugin-c-language/
Sources: https://github.com/guillermocalvo/gradle-plugin-c-language
Version 0.3.0
Created 11 January 2023.
                A plugin that produces a native application from C source
                
            
            
            
                
            
            
        Add this plugin to your build using the plugins DSL:
plugins {
  id("dev.guillermo.gradle.c-application") version "0.3.0"
}
              See also:
- 
                
Adding the plugin to build logic for usage in precompiled script plugins.
See the relevant documentation for more information.
Add this plugin as a dependency to
<convention-plugins-build>/build.gradle(.kts):dependencies { implementation("dev.guillermo.gradle.c-application:dev.guillermo.gradle.c-application.gradle.plugin:0.3.0") }It can then be applied in the precompiled script plugin:plugins { id("dev.guillermo.gradle.c-application") } - 
                
The legacy method of plugin application.
See the relevant documentation for more information.buildscript { repositories { gradlePluginPortal() } dependencies { classpath("dev.guillermo.gradle.c-application:dev.guillermo.gradle.c-application.gradle.plugin:0.3.0") } } apply(plugin = "dev.guillermo.gradle.c-application") - Applying plugins to all subprojects .