diff --git a/build.xml b/build.xml index dc174b339b4..8af56e48344 100644 --- a/build.xml +++ b/build.xml @@ -61,6 +61,31 @@ + + + + + + + + + + + + + + + + + + + diff --git a/testlib/module.kt b/testlib/module.kt new file mode 100644 index 00000000000..a93cdb2cfd4 --- /dev/null +++ b/testlib/module.kt @@ -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") + } +} \ No newline at end of file