Search Gradle plugins

Version 2.0

2.0

Created 12 November 2020.

The plugin allow to use LLVM library.

Add this plugin to your build using the plugins DSL:

plugins {
  id("loggersoft.cpp-llvm") version "2.0"
}

See also:

  • The legacy method of plugin application.
    buildscript {
      repositories {
        gradlePluginPortal()
      }
      dependencies {
        classpath("gradle.plugin.loggersoft:cpp-llvm:2.0")
      }
    }
    
    apply(plugin = "loggersoft.cpp-llvm")
  • Applying plugins to all subprojects .