mirror of
https://github.com/irmen/prog8.git
synced 2025-02-15 00:32:09 +00:00
28 lines
684 B
Plaintext
28 lines
684 B
Plaintext
import org.jetbrains.kotlin.gradle.dsl.JvmTarget
|
|
|
|
plugins {
|
|
kotlin("jvm")
|
|
}
|
|
|
|
dependencies {
|
|
implementation(project(":codeCore"))
|
|
implementation(project(":intermediate"))
|
|
implementation(project(":codeGenIntermediate"))
|
|
// implementation("org.jetbrains.kotlin:kotlin-stdlib-jdk8")
|
|
// implementation "org.jetbrains.kotlin:kotlin-reflect"
|
|
implementation("com.michael-bull.kotlin-result:kotlin-result-jvm:2.0.1")
|
|
}
|
|
|
|
sourceSets {
|
|
main {
|
|
java {
|
|
srcDir(file("${project.projectDir}/src"))
|
|
}
|
|
resources {
|
|
srcDir(file("${project.projectDir}/res"))
|
|
}
|
|
}
|
|
}
|
|
|
|
// note: there are no unit tests in this module!
|