Added Ant task for building the branding swf files from outside Flash Builder

This commit is contained in:
deniszgonjanin 2010-08-24 20:10:28 +00:00
parent 31b2fea237
commit 8d44d18609

View File

@ -42,6 +42,13 @@
<foreach list="${AVAILABLE_LOCALES}" target="build-locale" param="supportedlocale" delimiter=","/>
</target>
<target name="branding" depends="init-ant-contrib">
<sequential>
<mxmlc file="${SRC_DIR}/branding/css/theme.css" output="${OUTPUT_DIR}/branding/css/theme.swf" debug="false" optimize="true">
</mxmlc>
</sequential>
</target>
<target name="build-locale">
<echo message="Building ${supportedlocale}"/>
<available file="${LOCALE_DIR}/${supportedlocale}" type="dir" property="locale.dir.present"/>