Files
kotlin-fork/testlib/module.kt
T
2012-02-20 10:01:57 +00:00

10 lines
208 B
Kotlin

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