Convert module scripting to .ktm extension.

This commit is contained in:
Ilya Ryzhenkov
2014-03-19 13:55:33 +04:00
committed by Andrey Breslav
parent 98c54f39bb
commit 480dd6767c
6 changed files with 4 additions and 4 deletions
@@ -0,0 +1,7 @@
import kotlin.modules.*
fun project() {
module("smoke", ".") {
sources += "Smoke.kt"
}
}