Comment #3 on issue 810 by jayachand.pajworld: Build swf file from lzx
using ant is not working
http://code.google.com/p/openmeetings/issues/detail?id=810
iam using build.xml file to compile swf file using ant script.
----------------------------------
Following is the code to compile:
----------------------------------
<project name="openmeetings" basedir="./" default="compile.laszlo">
<property name="out.dir" value = "${basedir}\html\swf" />
<property name="laszlo.home" value="D:\OpeLaszlo4.3\OpenLaszlo Server
4.3.0\Server\lps-4.3.0"/>
<property name="laszlo.src.dir" value="${basedir}"/>
<property name="laszlo.debug" value="false"/>
<property name="laszlo.proxied" value = "true"/>
<path id = "laszlo.lib">
<pathelement location="${laszlo.home}/WEB-INF/lps/server/build" />
<pathelement location="${laszlo.home}/WEB-INF/classes" />
<fileset dir = "${laszlo.home}/3rd-party/jars/dev" includes="**/*.jar"/>
<fileset dir = "${laszlo.home}/WEB-INF/lib" includes="**/*.jar"/>
<fileset dir = "D:\OpeLaszlo4.3\OpenLaszlo Server
4.3.0\Server\tomcat-5.0.24\common\lib" includes="**/*.jar"/>
<fileset dir = "D:\OpeLaszlo4.3\OpenLaszlo Server
4.3.0\Server\tomcat-5.0.24\server\lib" includes="**/*.jar"/>
</path>
<target name = "compile.laszlo">
<java classname = "org.openlaszlo.compiler.Main" fork = "true"
newenvironment="true"
failonerror="true"
dir = "${laszlo.src.dir}"
classpathref="laszlo.lib"
>
<jvmarg value = "-DLPS_HOME=${laszlo.home}"/>
<jvmarg value = "-Dlzdebug=${laszlo.debug}"/>
<jvmarg value = "-Dlzproxied=${laszlo.proxied}"/>
<jvmarg value = "-Xms1024M"/>
<jvmarg value = "-Xmx1024M"/>
<arg line="--runtime=swf8 --mcache on --onerror warn main.lzx" />
</java>
</target>
</project>
--
You received this message because you are listed in the owner
or CC fields of this issue, or because you starred this issue.
You may adjust your issue notification preferences at:
http://code.google.com/hosting/settings
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups
"OpenMeetings developers" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to
[email protected]
For more options, visit this group at
http://groups.google.com/group/openmeetings-dev?hl=en
-~----------~----~----~----~------~----~------~--~---