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 0.9
0.9
Created 14 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 "0.9"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("gradle.plugin.org.bitbucket.akornilov:cpp-build-tuner:0.9")
}
}
apply(plugin = "org.bitbucket.akornilov.cpp-build-tuner")
Using the plugins DSL:
plugins {
id "org.bitbucket.akornilov.cpp-build-tuner" version "0.9"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "gradle.plugin.org.bitbucket.akornilov:cpp-build-tuner:0.9"
}
}
apply plugin: "org.bitbucket.akornilov.cpp-build-tuner"