added a module definition for the generation of API docs

This commit is contained in:
James Strachan
2012-03-09 11:42:50 +00:00
parent beafb561bb
commit 2ba6b3b8ba
+10
View File
@@ -0,0 +1,10 @@
import kotlin.modules.*
fun project() {
module("apidocs") {
addSourceFiles("src/core")
addSourceFiles("src/html5")
addSourceFiles("src/jquery")
addSourceFiles("src/raphael")
}
}