Search Gradle plugins

Version 0.7

0.7

Created 01 November 2019.

The plugin allow to use LLVM library.

Add this plugin to your build using the plugins DSL:

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

See also:

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