[orx-kotlin-parser] Convert build.gradle to build.gradle.kts
This commit is contained in:
@@ -1,26 +0,0 @@
|
|||||||
plugins {
|
|
||||||
id("org.openrndr.extra.convention.kotlin-jvm")
|
|
||||||
id("antlr")
|
|
||||||
}
|
|
||||||
|
|
||||||
sourceSets {
|
|
||||||
main {
|
|
||||||
java {
|
|
||||||
srcDir("build/generated-src/antlr")
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
generateGrammarSource {
|
|
||||||
maxHeapSize = "64m"
|
|
||||||
arguments += ["-visitor", "-long-messages"]
|
|
||||||
outputDirectory = file("${project.buildDir}/generated-src/antlr/org/openrndr/extra/kotlin/antlr".toString())
|
|
||||||
}
|
|
||||||
|
|
||||||
dependencies {
|
|
||||||
antlr(libs.antlr.core)
|
|
||||||
implementation(libs.antlr.runtime)
|
|
||||||
}
|
|
||||||
|
|
||||||
tasks.getByName("compileKotlin").dependsOn("generateGrammarSource")
|
|
||||||
tasks.getByName("sourcesJar").dependsOn("generateGrammarSource")
|
|
||||||
33
orx-jvm/orx-kotlin-parser/build.gradle.kts
Normal file
33
orx-jvm/orx-kotlin-parser/build.gradle.kts
Normal file
@@ -0,0 +1,33 @@
|
|||||||
|
import org.jetbrains.kotlin.gradle.tasks.KotlinCompile
|
||||||
|
|
||||||
|
plugins {
|
||||||
|
org.openrndr.extra.convention.`kotlin-jvm`
|
||||||
|
antlr
|
||||||
|
}
|
||||||
|
|
||||||
|
tasks.generateGrammarSource {
|
||||||
|
maxHeapSize = "64m"
|
||||||
|
arguments.addAll(listOf("-visitor", "-long-messages", "-package", "org.openrndr.extra.kotlin.antlr"))
|
||||||
|
outputDirectory = file("${project.buildDir}/generated-src/antlr/org/openrndr/extra/kotlin/antlr".toString())
|
||||||
|
}
|
||||||
|
|
||||||
|
sourceSets {
|
||||||
|
main {
|
||||||
|
java {
|
||||||
|
srcDir("build/generated-src/antlr")
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
tasks.withType<KotlinCompile> {
|
||||||
|
kotlinOptions.freeCompilerArgs = listOf("-opt-in=kotlin.RequiresOptIn")
|
||||||
|
}
|
||||||
|
|
||||||
|
dependencies {
|
||||||
|
antlr(libs.antlr.core)
|
||||||
|
implementation(libs.antlr.runtime)
|
||||||
|
testImplementation(libs.kluent)
|
||||||
|
}
|
||||||
|
|
||||||
|
tasks.getByName("compileKotlin").dependsOn("generateGrammarSource")
|
||||||
|
tasks.getByName("sourcesJar").dependsOn("generateGrammarSource")
|
||||||
@@ -4,11 +4,6 @@
|
|||||||
|
|
||||||
parser grammar KotlinParser;
|
parser grammar KotlinParser;
|
||||||
|
|
||||||
@header {
|
|
||||||
package org.openrndr.extra.kotlin.antlr;
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
options { tokenVocab = KotlinLexer; }
|
options { tokenVocab = KotlinLexer; }
|
||||||
|
|
||||||
// SECTION: general
|
// SECTION: general
|
||||||
|
|||||||
@@ -6,11 +6,6 @@
|
|||||||
|
|
||||||
lexer grammar UnicodeClasses;
|
lexer grammar UnicodeClasses;
|
||||||
|
|
||||||
@header {
|
|
||||||
package org.openrndr.extra.kotlin.antlr;
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
UNICODE_CLASS_LL:
|
UNICODE_CLASS_LL:
|
||||||
'\u0061'..'\u007A' |
|
'\u0061'..'\u007A' |
|
||||||
'\u00B5' |
|
'\u00B5' |
|
||||||
|
|||||||
Reference in New Issue
Block a user