diff options
-rwxr-xr-x | .idea/ant.xml | 3 | ||||
-rw-r--r-- | build.xml | 3 |
2 files changed, 5 insertions, 1 deletions
diff --git a/.idea/ant.xml b/.idea/ant.xml index 13b52a5a..4e95ddbe 100755 --- a/.idea/ant.xml +++ b/.idea/ant.xml @@ -7,9 +7,10 @@ </properties> </buildFile> <buildFile url="file://$PROJECT_DIR$/build.xml"> + <maximumHeapSize value="256" /> <properties> <property name="kotlin.compiler" value="$PROJECT_DIR$/../kotlin/dist/kotlinc" /> </properties> </buildFile> </component> -</project> +</project>
\ No newline at end of file @@ -15,6 +15,7 @@ <target name="build"> <mkdir dir="out"/> + <echo message="${java.home}"/> <kotlinc output="out/dokka.jar"> <src path="src"/> @@ -23,6 +24,8 @@ <compilerArg value="${kotlinc.repeat}"/> <classpath> <fileset dir="lib" includes="*.jar"/> + <file name="${java.home}/lib/tools.jar"/> + <file name="${java.home}/../lib/tools.jar"/> </classpath> </kotlinc> |