From a918058262d944429ffaa141ac2020fc1c5b1fee Mon Sep 17 00:00:00 2001 From: Evgeny Goldin Date: Mon, 20 Feb 2012 18:22:15 +0200 Subject: [PATCH] HtmlBuilder is commented out, compilation fails; Using "testlib/module.kt" to compile Unit tests with module. --- build-tools/build.xml | 8 ++++---- build-tools/test/modules/Testlib.kts | 9 --------- 2 files changed, 4 insertions(+), 13 deletions(-) delete mode 100644 build-tools/test/modules/Testlib.kts diff --git a/build-tools/build.xml b/build-tools/build.xml index af7996b5a32..b8cd67ac382 100644 --- a/build-tools/build.xml +++ b/build-tools/build.xml @@ -385,13 +385,13 @@ - + - - - + + + diff --git a/build-tools/test/modules/Testlib.kts b/build-tools/test/modules/Testlib.kts deleted file mode 100644 index 0d58ad03889..00000000000 --- a/build-tools/test/modules/Testlib.kts +++ /dev/null @@ -1,9 +0,0 @@ -import kotlin.modules.* - -val homeDir = "../../../testlib/test" - -fun project() { - module("Testlib") { - sources += homeDir - } -}