org.bitbucket.akornilov.cpp-build-tuner
Owner: Alexander Kornilov
The plugin performs C++ build tunning according to current build variant: debug or release.
https://bitbucket.org/akornilov
Sources: https://bitbucket.org/akornilov/tools
Version 1.1 (latest)
1.1
Created 28 October 2019.
The plugin performs C++ build tunning according to current build variant: debug or release.
Using the plugins DSL:
plugins {
id("org.bitbucket.akornilov.cpp-build-tuner") version "1.1"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("gradle.plugin.org.bitbucket.akornilov:cpp-build-tuner:1.1")
}
}
apply(plugin = "org.bitbucket.akornilov.cpp-build-tuner")
Using the plugins DSL:
plugins {
id "org.bitbucket.akornilov.cpp-build-tuner" version "1.1"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "gradle.plugin.org.bitbucket.akornilov:cpp-build-tuner:1.1"
}
}
apply plugin: "org.bitbucket.akornilov.cpp-build-tuner"