Merge remote branch 'upstream/master'

This commit is contained in:
Franck Rasolo
2012-03-21 10:27:47 +00:00
15 changed files with 18 additions and 20 deletions
+1 -1
View File
@@ -2,7 +2,7 @@ import kotlin.modules.*
fun project() {
module("apidocs") {
classpath += "../kunit/lib/junit-4.9.jar"
classpath += "../lib/junit-4.9.jar"
addSourceFiles("../stdlib/src")
addSourceFiles("../kunit/src/main/kotlin")
+1 -1
View File
@@ -3,7 +3,7 @@ import kotlin.modules.*
fun project() {
module("kunit") {
// TODO how to refer to the dir of the module?
classpath += "kunit/lib/junit-4.9.jar"
classpath += "lib/junit-4.9.jar"
addSourceFiles("src/main/kotlin")
}
+9
View File
@@ -0,0 +1,9 @@
import kotlin.modules.*
fun project() {
module("testlib") {
classpath += "lib/junit-4.9.jar"
addSourceFiles("test")
}
}
Binary file not shown.
-11
View File
@@ -1,11 +0,0 @@
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")
}
}