500b89f200
git-svn-id: http://bigbluebutton.googlecode.com/svn/trunk@2703 af16638f-c34d-0410-8cfa-b39d5352b314
120 lines
4.2 KiB
XML
120 lines
4.2 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<!-- BigBlueButton Client build.xml for use by Hudson builds. -->
|
|
<project name="BigBlueButton Client" basedir="." >
|
|
<property environment="env" />
|
|
<property name="FLEX_HOME" value="${env.FLEX_HOME}" />
|
|
<property name="APP_ROOT" value="./src" />
|
|
<property name="ROOT_DIR" value="." />
|
|
<property name="OUTPUT_DIR" value="./client" />
|
|
<taskdef resource="flexTasks.tasks" classpath="${FLEX_HOME}/ant/lib/flexTasks.jar" />
|
|
|
|
<target name="mxmlc-component" description="Compiling the BBB mxml files">
|
|
<mxmlc-compile target="${APP_ROOT}/BigBlueButton" />
|
|
<mxmlc-compile target="${APP_ROOT}/ChatModule" />
|
|
<mxmlc-compile target="${APP_ROOT}/ViewersModule" />
|
|
<mxmlc-compile target="${APP_ROOT}/ListenersModule" />
|
|
<mxmlc-compile target="${APP_ROOT}/PresentationModule" />
|
|
<mxmlc-compile target="${APP_ROOT}/DeskShareModule" />
|
|
<mxmlc-compile target="${APP_ROOT}/PhoneModule" />
|
|
<mxmlc-compile target="${APP_ROOT}/AutotestModule" />
|
|
<mxmlc-compile target="${APP_ROOT}/VideoconfModule" />
|
|
|
|
<!-- REMOVE FOR NOW (RALAM AUG 3, 2009)
|
|
<mxmlc-compile target="${APP_ROOT}/LoginModule" />
|
|
<mxmlc-compile target="${APP_ROOT}/NotesModule" />
|
|
<mxmlc-compile target="${APP_ROOT}/HighlighterModule" />
|
|
-->
|
|
|
|
<copy todir="${OUTPUT_DIR}/conf" >
|
|
<fileset dir="./src/conf" />
|
|
</copy>
|
|
|
|
<copy todir="${OUTPUT_DIR}/swfobject/" >
|
|
<fileset dir="./src/swfobject/" />
|
|
</copy>
|
|
|
|
<copy todir="${OUTPUT_DIR}/org/bigbluebutton/common/assets/images" >
|
|
<fileset dir="./src/org/bigbluebutton/common/assets/images/" />
|
|
</copy>
|
|
<!--
|
|
<copy todir="${OUTPUT_DIR}/org/bigbluebutton/main/view/assets/images" >
|
|
<fileset dir="./src/org/bigbluebutton/main/view/assets/images" />
|
|
</copy>
|
|
-->
|
|
<copy todir="${OUTPUT_DIR}/org/bigbluebutton/modules/listeners/view/assets/images/" >
|
|
<fileset dir="./src/org/bigbluebutton/modules/listeners/view/assets/images/" />
|
|
</copy>
|
|
<!--
|
|
<copy todir="${OUTPUT_DIR}/org/bigbluebutton/modules/presentation/view/assets/" >
|
|
<fileset dir="./src/org/bigbluebutton/modules/presentation/view/assets/" />
|
|
</copy>
|
|
-->
|
|
<copy todir="${OUTPUT_DIR}/org/bigbluebutton/modules/phone/views/assets/images/" >
|
|
<fileset dir="./src/org/bigbluebutton/modules/phone/views/assets/images/" />
|
|
</copy>
|
|
|
|
<copy todir="${OUTPUT_DIR}/org/bigbluebutton/modules/videoconf/views/assets/images/" >
|
|
<fileset dir="./src/org/bigbluebutton/modules/videoconf/views/assets/images/" />
|
|
</copy>
|
|
|
|
<copy file="./html-template/bbb-deskshare-applet-0.62.jar" todir="${OUTPUT_DIR}"/>
|
|
|
|
<move todir="${OUTPUT_DIR}" >
|
|
<fileset dir="${OUTPUT_DIR}/src" />
|
|
</move>
|
|
</target>
|
|
|
|
<target name="generate-wrapper" depends="mxmlc-component">
|
|
<html-wrapper
|
|
title="BigBlueButton"
|
|
file="BigBlueButton.html"
|
|
height="100%"
|
|
width="100%"
|
|
bgcolor="grey"
|
|
application="BBB"
|
|
swf="BigBlueButton"
|
|
version-major="9"
|
|
version-minor="0"
|
|
version-revision="0"
|
|
history="true"
|
|
template="express-installation"
|
|
output="${OUTPUT_DIR}"
|
|
/>
|
|
<copy file="./html-template/BigBlueButton.html" todir="${OUTPUT_DIR}" overwrite="true"/>
|
|
</target>
|
|
|
|
<target name="clean">
|
|
<delete dir="${OUTPUT_DIR}" />
|
|
</target>
|
|
|
|
<target name="cleanandmake" depends="clean, generate-wrapper"></target>
|
|
|
|
<macrodef name="mxmlc-compile">
|
|
<attribute name="target" description="Path to the file being compiled." />
|
|
<attribute name="flex" default="${env.FLEX_HOME}" description="Location of the Flex install." />
|
|
<attribute name="app" default="."/>
|
|
<attribute name="output" default="./output" description="" />
|
|
<sequential>
|
|
<mxmlc
|
|
file="@{target}.mxml"
|
|
output="${OUTPUT_DIR}/@{target}.swf"
|
|
debug="false"
|
|
>
|
|
<load-config filename="@{flex}/frameworks/flex-config.xml" />
|
|
<source-path path-element="@{flex}/frameworks" />
|
|
<compiler.library-path dir="@{flex}/frameworks" append="true">
|
|
<include name="libs" />
|
|
<include name="../bundles/{locale}" />
|
|
</compiler.library-path>
|
|
|
|
<compiler.library-path dir="@{app}" append="true">
|
|
<include name="libs" />
|
|
<include name="libs/generated" />
|
|
</compiler.library-path>
|
|
|
|
<default-size width="500" height="600" />
|
|
</mxmlc>
|
|
</sequential>
|
|
</macrodef>
|
|
</project>
|