Subversion Repository Public Repository

litesoft

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
<?xml version="1.0" encoding="UTF-8" ?>
<!-- Litesoft Tools Build -->
<project name="Litesoft" default="gwt" basedir="." >

    <target name="dirs">
        <mkdir dir="jars"/>
    </target>

    <target name="clean">
        <delete>
            <fileset dir="." includes="jars/*.jar" />
        </delete>
        <delete file="last.build" quiet="true"/>
        <ant dir="core/jvm1.4" target="clean" inheritAll="true" />
        <ant dir="GWT/Client"  target="clean" inheritAll="true" />
        <ant dir="core/jvm1.5" target="clean" inheritAll="true" />
        <ant dir="GWT/Server"  target="clean" inheritAll="true" />
     </target>

    <condition property="gwt.flavor" value="linux">
       <os name="Linux"/>
    </condition>
    <condition property="gwt.flavor" value="mac">
       <os family="mac"/>
    </condition>
    <condition property="gwt.flavor" value="windows">
       <os family="windows"/>
    </condition>

    <property name="gwtdir" value="../../../ForeignPackages/gwt-${gwt.flavor}-1.5.3"/>

    <target name="gwt" depends="clean, dirs">
        <!--<copy file="RPCpassable/gwtIsSerializable/RPCpassable.jar" preservelastmodified="true" todir="jars"/>-->
        <!--<copy file="RPCpassable/javaSerializable/RPCpassable.jar" preservelastmodified="true" todir="jars"/>-->
        <!--<copy file="deprecated/LiteSoftDeprecated.jar" preservelastmodified="true" todir="jars"/>-->

        <ant dir="core/jvm1.4" inheritAll="true" />
        <ant dir="GWT/Client"  inheritAll="true" />
        <ant dir="core/jvm1.5" inheritAll="true" />
        <ant dir="GWT/Server"  inheritAll="true" />
    </target>

    <target name="build" depends="dirs">
        <ant dir="core/jvm1.4" target="jar" inheritAll="true" />
        <ant dir="GWT/Client"  target="jar" inheritAll="true" />
        <ant dir="core/jvm1.5" target="jar" inheritAll="true" />
        <ant dir="GWT/Server"  target="jar" inheritAll="true" />
    </target>

</project>

Commits for litesoft/trunk/Java/build.xml

Diff revisions: vs.
Revision Author Commited Message
2 GeorgeS picture GeorgeS Sun 07 Feb, 2010 12:50:58 +0000