com.verificationgentleman.gradle.hdvl.c
Owner:
Tudor Timi
A plugin that adds support for compiling and running C code in HDL simulators through the DPI
https://github.com/tudortimi/gradle-hdvl/blob/master/README.md
Sources: https://github.com/tudortimi/gradle-hdvl
Version 0.2.1
Created 29 June 2022.
A plugin that adds support for compiling and running C code in HDL simulators through the DPI
Add this plugin to your build using the plugins DSL:
plugins {
id("com.verificationgentleman.gradle.hdvl.c") version "0.2.1"
}
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("com.verificationgentleman.gradle.hdvl.c:com.verificationgentleman.gradle.hdvl.c.gradle.plugin:0.2.1") }
It can then be applied in the precompiled script plugin:plugins { id("com.verificationgentleman.gradle.hdvl.c") }
-
The legacy method of plugin application.
See the relevant documentation for more information.buildscript { repositories { gradlePluginPortal() } dependencies { classpath("com.verificationgentleman.gradle.hdvl.c:com.verificationgentleman.gradle.hdvl.c.gradle.plugin:0.2.1") } } apply(plugin = "com.verificationgentleman.gradle.hdvl.c")
- Applying plugins to all subprojects .