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
+11
View File
@@ -0,0 +1,11 @@
import kotlin.modules.*
fun project() {
module("testlib") {
// TODO how to refer to the dir of the module?
classpath += "dist/kotlinc/lib/kotlin-test.jar"
classpath += "kunit/lib/junit-4.9.jar"
addSourceFiles("test")
}
}