bigbluebutton-Github/bigbluebutton-client/branding/default/build.xml

27 lines
1.2 KiB
XML
Raw Normal View History

2012-12-28 04:27:29 +08:00
<?xml version="1.0" encoding="utf-8"?>
<!-- BigBlueButton Branding build.xml for use by Hudson builds. -->
<project name="BigBlueButton Branding" basedir="../.." default="branding">
2012-12-28 04:27:29 +08:00
<property environment="env" />
<property name="DEBUG" value="true" />
<property name="BUILD_ENV" value="DEV" />
<property name="FLEX_HOME" value="${env.FLEX_HOME}" />
2017-07-18 07:14:53 +08:00
<property name="themeFile" value="V2Theme.css" />
2012-12-28 04:27:29 +08:00
<property name="BASE_DIR" value="${basedir}" />
<property name="SRC_DIR" value="${BASE_DIR}/src" />
<property name="OUTPUT_DIR" value="${BASE_DIR}/client" />
2012-12-28 04:27:29 +08:00
<taskdef resource="flexTasks.tasks" classpath="${FLEX_HOME}/ant/lib/flexTasks.jar" />
2012-12-28 04:27:29 +08:00
<target name="init-ant-contrib">
<property name="ant-contrib.jar" location="${BASE_DIR}/build/lib/ant-contrib-0.6.jar" />
<taskdef resource="net/sf/antcontrib/antcontrib.properties" classpath="${ant-contrib.jar}" />
2012-12-28 04:27:29 +08:00
</target>
2012-12-28 04:27:29 +08:00
<target name="branding" depends="init-ant-contrib">
<sequential>
<mxmlc file="${BASE_DIR}/branding/default/style/css/${themeFile}" output="${OUTPUT_DIR}/branding/css/${themeFile}.swf" debug="${DEBUG}" incremental="true" swf-version="13" optimize="true">
2012-12-28 04:27:29 +08:00
</mxmlc>
</sequential>
</target>
</project>