loggersoft.cpp-llvm
Owner: Alexander Kornilov
The plugin allow to use LLVM library.
https://gradle-cpp.sourceforge.io
Sources: http://hg.code.sf.net/p/gradle-cpp/code
Using the plugins DSL:
plugins {
id("loggersoft.cpp-llvm") version "2.3"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("loggersoft:cpp-llvm:2.3")
}
}
apply(plugin = "loggersoft.cpp-llvm")
Using the plugins DSL:
plugins {
id "loggersoft.cpp-llvm" version "2.3"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "loggersoft:cpp-llvm:2.3"
}
}
apply plugin: "loggersoft.cpp-llvm"