Search Gradle plugins

Version 1.9 (latest)

1.9

Created 16 September 2020.

The plugin performs C++ build tunning according to current build variant: debug or release.

Add this plugin to your build using the plugins DSL:

plugins {
  id("loggersoft.cpp-build-tuner") version "1.9"
}

See also:

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