mirror of
https://github.com/irmen/prog8.git
synced 2024-12-25 08:29:25 +00:00
26 lines
618 B
Plaintext
26 lines
618 B
Plaintext
import org.jetbrains.kotlin.gradle.dsl.JvmTarget
|
|
|
|
plugins {
|
|
kotlin("jvm")
|
|
}
|
|
|
|
dependencies {
|
|
implementation(project(":codeCore"))
|
|
implementation(project(":compilerAst"))
|
|
// implementation("org.jetbrains.kotlin:kotlin-stdlib-jdk8")
|
|
implementation("com.michael-bull.kotlin-result:kotlin-result-jvm:2.0.0")
|
|
// implementation "org.jetbrains.kotlin:kotlin-reflect"
|
|
}
|
|
|
|
sourceSets {
|
|
main {
|
|
java {
|
|
srcDir("${project.projectDir}/src")
|
|
}
|
|
resources {
|
|
srcDir("${project.projectDir}/res")
|
|
}
|
|
}
|
|
}
|
|
|
|
// note: there are no unit tests in this module! |