Search Gradle plugins

Version 1.9 (latest)

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:

  • Adding the plugin to build logic for usage in precompiled script plugins.

    See the relevant documentation for more information.

    Add this plugin as a dependency to <convention-plugins-build>/build.gradle(.kts):

    dependencies {
      implementation("loggersoft.cpp-build-tuner:loggersoft.cpp-build-tuner.gradle.plugin:1.9")
    }
    It can then be applied in the precompiled script plugin:
    plugins {
      id("loggersoft.cpp-build-tuner")
    }
  • The legacy method of plugin application. See the relevant documentation for more information.
    buildscript {
      repositories {
        gradlePluginPortal()
      }
      dependencies {
        classpath("loggersoft.cpp-build-tuner:loggersoft.cpp-build-tuner.gradle.plugin:1.9")
      }
    }
    
    apply(plugin = "loggersoft.cpp-build-tuner")
  • Applying plugins to all subprojects .