org.tboox.gradle-xmake-plugin
Owner: RukiWang
A gradle plugin that integrates xmake seamlessly
https://github.com/xmake-io/xmake-gradle
Sources: https://github.com/xmake/xmake-gradle
Version 1.2.0 (latest)
1.2.0
Created 05 November 2024.
A gradle plugin that integrates xmake seamlessly
Using the plugins DSL:
plugins {
id("org.tboox.gradle-xmake-plugin") version "1.2.0"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("org.tboox:gradle-xmake-plugin:1.2.0")
}
}
apply(plugin = "org.tboox.gradle-xmake-plugin")
Using the plugins DSL:
plugins {
id "org.tboox.gradle-xmake-plugin" version "1.2.0"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "org.tboox:gradle-xmake-plugin:1.2.0"
}
}
apply plugin: "org.tboox.gradle-xmake-plugin"