added ant goal to compile the testlib test cases

This commit is contained in:
James Strachan
2012-02-20 10:01:57 +00:00
parent 33af436b38
commit 70bb9aec93
2 changed files with 35 additions and 0 deletions
+10
View File
@@ -0,0 +1,10 @@
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")
}
}