Search Gradle plugins

tui.sse.mde4cpp.mde4cpp-compile-plugin

Gradle plugin to compile C++ projects of the MDE4CPP framework using CMake

Version 0.5 (latest)

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.

Add this plugin to your build using the plugins DSL:

plugins {
  id("tui.sse.mde4cpp.mde4cpp-compile-plugin") version "0.5"
}

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("tui.sse.mde4cpp.mde4cpp-compile-plugin:tui.sse.mde4cpp.mde4cpp-compile-plugin.gradle.plugin:0.5")
    }
    It can then be applied in the precompiled script plugin:
    plugins {
      id("tui.sse.mde4cpp.mde4cpp-compile-plugin")
    }
  • The legacy method of plugin application. See the relevant documentation for more information.
    buildscript {
      repositories {
        gradlePluginPortal()
      }
      dependencies {
        classpath("tui.sse.mde4cpp.mde4cpp-compile-plugin:tui.sse.mde4cpp.mde4cpp-compile-plugin.gradle.plugin:0.5")
      }
    }
    
    apply(plugin = "tui.sse.mde4cpp.mde4cpp-compile-plugin")
  • Applying plugins to all subprojects .