com.gitlab.pklima.premake
Owner: Petr Klima
Plugin which integrates the premake5 build configuration generator into Gradle
https://gitlab.com/pklima/gradle-premake-plugin
Sources: https://gitlab.com/pklima/gradle-premake-plugin.git
Version 1.0.0 (latest)
Created 23 November 2023.
Plugin which integrates the premake5 build configuration generator into Gradle
Add this plugin to your build using the plugins DSL:
plugins {
id("com.gitlab.pklima.premake") version "1.0.0"
}
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("com.gitlab.pklima.premake:com.gitlab.pklima.premake.gradle.plugin:1.0.0") }
It can then be applied in the precompiled script plugin:plugins { id("com.gitlab.pklima.premake") }
-
The legacy method of plugin application.
See the relevant documentation for more information.buildscript { repositories { gradlePluginPortal() } dependencies { classpath("com.gitlab.pklima.premake:com.gitlab.pklima.premake.gradle.plugin:1.0.0") } } apply(plugin = "com.gitlab.pklima.premake")
- Applying plugins to all subprojects .