loggersoft.cpp-build-tuner
Owner: Alexander Kornilov
The plugin performs C++ build tunning according to current build variant: debug or release.
https://gradle-cpp.sourceforge.io
Sources: http://hg.code.sf.net/p/gradle-cpp/code
Version 1.9 (latest)
1.9
Created 16 September 2020.
The plugin performs C++ build tunning according to current build variant: debug or release.
Using the plugins DSL:
plugins {
id("loggersoft.cpp-build-tuner") version "1.9"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("gradle.plugin.loggersoft:cpp-build-tuner:1.9")
}
}
apply(plugin = "loggersoft.cpp-build-tuner")
Using the plugins DSL:
plugins {
id "loggersoft.cpp-build-tuner" version "1.9"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "gradle.plugin.loggersoft:cpp-build-tuner:1.9"
}
}
apply plugin: "loggersoft.cpp-build-tuner"