搜索 Gradle 插件

版本 0.2.7 (最新版)

0.2.7

创建于 2024 年 6 月 30 日。

一个插件,通过 DPI 支持在 HDL 仿真器中编译和运行 C 代码

使用 plugins DSL

plugins {
  id("com.verificationgentleman.gradle.hdvl.c") version "0.2.7"
}

使用 旧插件应用

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org.cn/m2/")
    }
  }
  dependencies {
    classpath("com.verificationgentleman.gradle:gradle-hdvl:0.2.7")
  }
}

apply(plugin = "com.verificationgentleman.gradle.hdvl.c")

使用 plugins DSL

plugins {
  id "com.verificationgentleman.gradle.hdvl.c" version "0.2.7"
}

使用 旧插件应用

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org.cn/m2/"
    }
  }
  dependencies {
    classpath "com.verificationgentleman.gradle:gradle-hdvl:0.2.7"
  }
}

apply plugin: "com.verificationgentleman.gradle.hdvl.c"

学习如何将插件应用于子项目