Files
kotlin-fork/libraries/kunit/module.kt
T
2014-10-13 21:25:55 +04:00

10 lines
210 B
Kotlin

import kotlin.modules.*
fun project() {
module("kunit") {
// TODO how to refer to the dir of the module?
classpath += "lib/junit-4.11.jar"
addSourceFiles("src/main/kotlin")
}
}