bootstrap Kotlin compiler for tests build

This commit is contained in:
Maxim Shafirov
2011-12-29 13:37:53 +04:00
parent f259b7d397
commit f3d39704bc
+5 -2
View File
@@ -1,4 +1,4 @@
<project name="Jet CI Bootstrap" default="unzipIdeaSDK"> <project name="Jet CI Bootstrap" default="unzipDependencies">
<macrodef name="echoprop"> <macrodef name="echoprop">
<attribute name="prop"/> <attribute name="prop"/>
<sequential> <sequential>
@@ -16,9 +16,12 @@
<echoprop prop="user.home"/> <echoprop prop="user.home"/>
<echoprop prop="user.dir"/> <echoprop prop="user.dir"/>
<target name="unzipIdeaSDK"> <target name="unzipDependencies">
<unzip dest="ideaSDK"> <unzip dest="ideaSDK">
<fileset dir="ideaSDK" includes="ideaIC*.zip"/> <fileset dir="ideaSDK" includes="ideaIC*.zip"/>
</unzip> </unzip>
<unzip dest="compiler">
<fileset dir="compiler" includes="kotlin*.zip"/>
</unzip>
</target> </target>
</project> </project>