tui.sse.mde4cpp.mde4cpp-compile-plugin
Owner: Alexander Wichmann
Gradle plugin to compile C++ projects of the MDE4CPP framework using CMake
Version 0.5 (latest)
0.5
Created 19 September 2018.
Gradle plugin to compile C++ projects of the MDE4CPP framework on Windows systems using cmake and c++ compiler.
Release notes version 0.3:
- add support of Linux and MacOS systems
Release notes version 0.4:
- rename compile property "make_parallel_jobs" to "workerCount"
Release notes version 0.5:
- property analysis improved
- configure system environment based on Gradle properties
- add system environment variables to up-to-date check
More information about MDE4CPP can be found under https://sse.tu-ilmenau.de/mde4cpp. Information about this plugin can be found under https://github.com/MDE4CPP/gradlePlugins.
Using the plugins DSL:
plugins {
id("tui.sse.mde4cpp.mde4cpp-compile-plugin") version "0.5"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("gradle.plugin.tui.sse.mde4cpp:MDE4CPPCompilePlugin:0.5")
}
}
apply(plugin = "tui.sse.mde4cpp.mde4cpp-compile-plugin")
Using the plugins DSL:
plugins {
id "tui.sse.mde4cpp.mde4cpp-compile-plugin" version "0.5"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "gradle.plugin.tui.sse.mde4cpp:MDE4CPPCompilePlugin:0.5"
}
}
apply plugin: "tui.sse.mde4cpp.mde4cpp-compile-plugin"