org.isotropy.gradleshaderc
Owner: Aurélien Mora
A gradle task to compile shaders
https://github.com/Isotropy-Studio/gradle-shaderc
Sources: https://github.com/Isotropy-Studio/gradle-shaderc.git
Version 0.0.2 (latest)
0.0.2
Created 24 January 2020.
A gradle task to compile shaders
Using the plugins DSL:
plugins {
id("org.isotropy.gradleshaderc") version "0.0.2"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("gradle.plugin.org.isotropy.gradleshaderc:buildSrc:0.0.2")
}
}
apply(plugin = "org.isotropy.gradleshaderc")
Using the plugins DSL:
plugins {
id "org.isotropy.gradleshaderc" version "0.0.2"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "gradle.plugin.org.isotropy.gradleshaderc:buildSrc:0.0.2"
}
}
apply plugin: "org.isotropy.gradleshaderc"