Libraries written in Kotlin are factored out into a separate project

This commit is contained in:
Andrey Breslav
2012-03-06 18:48:49 +04:00
parent 7c6f1657d2
commit 0a08ac5fe8
253 changed files with 252 additions and 2703 deletions
+10
View File
@@ -0,0 +1,10 @@
import kotlin.modules.*
fun project() {
module("kunit") {
// TODO how to refer to the dir of the module?
classpath += "kunit/lib/junit-4.9.jar"
addSourceFiles("src/main/kotlin")
}
}